Pergunta de entrevista da empresa Goldman Sachs

hashmap compared to map

Respostas da entrevista

Sigiloso

17 de fev. de 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)

Sigiloso

3 de mar. de 2011

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