Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. HashMap<String, Integer> hashMap = new HashMap(1);
  2.  
  3. hashMap.put(null, 156);
  4. hashMap.put("First", 16);
  5. hashMap.put("Second", 16);
  6.  
  7. Set set = hashMap.entrySet();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement