Skip to content

Instantly share code, notes, and snippets.

@gustavobite
Created January 16, 2017 12:24
Show Gist options
  • Save gustavobite/03d171b5672d72654277d4d8e6824bd8 to your computer and use it in GitHub Desktop.
Save gustavobite/03d171b5672d72654277d4d8e6824bd8 to your computer and use it in GitHub Desktop.
Melhor forma para iteração em Map
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