0 votes
in JAVA by
What is hashmap in java?

1 Answer

0 votes
by

What is hashmap in java?

HashMap is a Map-based collection class that is used for storing Key & value pairs, it is denoted as HashMap<Key, Value> or HashMap<K, V>. This class makes no guarantees as to the order of the map. It is similar to the Hashtable class except that it is unsynchronized and permits nulls(null values and null key).

Related questions

0 votes
asked Oct 23, 2020 in JAVA by rahuljain1
+1 vote
asked May 24, 2019 in JAVA by rajeshsharma
...