how to create a map java code example
Example 1: create map java
Map<String, Integer> map = new HashMap<>();
Example 2: java create map
Map <Integer, Point2D.Double> hm = new HashMap<Integer, Point2D>();
hm.put(1, new Point2D.Double(50, 50));
Map<String, Integer> map = new HashMap<>();
Map <Integer, Point2D.Double> hm = new HashMap<Integer, Point2D>();
hm.put(1, new Point2D.Double(50, 50));