Computer Science, asked by saritaraskar6953, 1 year ago

What is HashMap and Map?


shalu4056: Map is an interface; HashMap is a particular implementation of that interface. HashMap uses a collection of hashed key values to do its lookup. ... Map is an interface in Java. AndHashMap is an implementation of that interface ..

Answers

Answered by Anonymous
0
Map is an interface; HashMap is a particular implementation of that interface. HashMap uses a collection of hashed key values to do its lookup. ... Map is an interface in Java. And HashMap is an implementation of that interface (i.e. provides all of the methods specified in the interface).
Similar questions