Online Java Compiler By
JavaTpoint.com
import java.util.*; public class CollectionsNewSetFromMapExample1 { public static void main(String[] args) { // create map Map
map = new WeakHashMap
(); // create a set from map Set
set = Collections.newSetFromMap(map); // add values in set set.add("Raj"); set.add("Rahul"); set.add("Karan"); // set and map values are System.out.println("Set is: " + set); System.out.println("Map is: " + map); } }
Output