A data structure that stores two pieces of information as a key and a value
Map <key, value>Map variables= new HashMap<key, value>();
Put method to store the element Get method to retrieve element Clear method to delete all elements Remove method to remove the specified element
Recommended Posts