Goldman Sachs Interview Question

hashmap compared to map

Interview Answers

Anonymous

Feb 17, 2011

HashMap implements Map. if you declare your object as Map you are only allowed to use Map methods, whereas HashMap contains more method you can use, it's a specific implementation of hash (for example TreeMap is also a way to implement Map)

Anonymous

Mar 3, 2011

Dont forget to mention that Map is an interface and HashMap is an implementation of the Map Interface.