Blogs about: Hashmap
Featured Blog
Synchronized collections everywhere
Vector and Hashtable are just the synchronized versions of the ArrayList an HashMap but working much slower. Use unsynchronized collections unless thread-safety is really required. Bad: List l = ne… more »
Java AntiPatterns
Collection
Badi Harahap wrote 3 months ago: Collection adalah sebuah object yang mengumpulkan beberapa element menjadi satu unit. Collection di … more »
Cache conscious hash tables
— 4 comments
Mark Dennehy wrote 3 months ago: So one of the things I was working on as part of DeviceAtlas (but which ultimately didn’t get … more »
Importance of specifying initial capacity while instantiating ArrayList and HashMap
— 2 comments
Venkat Sadasivam wrote 5 months ago: ArrayList and HashMap are a few of the most frequently used data structures in Java development. So … more »
Synchronized collections everywhere
— 1 comment
Alex wrote 8 months ago: Vector and Hashtable are just the synchronized versions of the ArrayList an HashMap but working much … more »
