In Java, When we are working on real time projects.. Generally we came across scenarios like Converting List to Set Object or Vice Versa. 1.
In Java, When we are working on real time projects.. Generally we came across scenarios like Converting List to Set Object or Vice Versa. 1.
public static void printMap(Map mp) { Iterator it = mp.entrySet().iterator(); while (it.hasNext()) { Map.Entry pair = (Map.Entry) it.next(); System.out.println(pair.getKey() + ” = ” +