Code for map interface in java
What is Map Map is an Interface.In map data is stored in key-value format. A map can not contain duplicate Key.We use map if we want to store,update and fetch data on the basis of key. For Example: -A map of country and capital -A map of cities and zip code -A map of environment variable
Read more