Created
January 16, 2017 12:24
-
-
Save gustavobite/03d171b5672d72654277d4d8e6824bd8 to your computer and use it in GitHub Desktop.
Melhor forma para iteração em Map
This file contains hidden or 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,Integer> entry : testMap.entrySet()) { | |
entry.getKey(); | |
entry.getValue(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment