Skip to content

Instantly share code, notes, and snippets.

@tigawa
Created July 31, 2013 05:22
Show Gist options
  • Save tigawa/6119525 to your computer and use it in GitHub Desktop.
Save tigawa/6119525 to your computer and use it in GitHub Desktop.
mapのfor文
// キーの一覧を表示する
for (String s : map.keySet()) System.out.println(s);
// 値の一覧を表示する
for (String s : map.values()) System.out.println(s);
// キーと値の一覧を表示する
for (Map.Entry<String, String> e : map.entrySet())
System.out.println(e.getKey()+" : "+e.getValue());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment