Question d’entretien chez Goldman Sachs

hashmap compared to map

Réponses aux questions d'entretien

Utilisateur anonyme

17 févr. 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)

Utilisateur anonyme

3 mars 2011

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