Created
March 29, 2011 00:10
-
-
Save e2kaneko/891591 to your computer and use it in GitHub Desktop.
Java - 拡張For文でMapをループ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for(Map.Entry<String, String> entry : map.entrySet()) { | |
System.out.println(entry.getKey()); | |
System.out.println(entry.getValue()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment