Skip to content

Instantly share code, notes, and snippets.

@ramadani
Last active April 7, 2017 08:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ramadani/6fb81824d65e179f359c1c5634dd3512 to your computer and use it in GitHub Desktop.
Save ramadani/6fb81824d65e179f359c1c5634dd3512 to your computer and use it in GitHub Desktop.
Javan Array Study Case 8
public void case8() {
Map<String, String> users = new LinkedHashMap<String, String>();
users.put("user1@example.com", "Adimas Lutfi Wicaksono");
users.put("user2@example.com", "Salman Alfarisi");
users.put("user3@example.com", "Muhammad Sholeh");
users.put("user4@example.com", "Yadi Cahyadi");
users.put("user5@example.com", "Maya Maulani");
users.keySet();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment