Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,15 @@
|
|||
Map<String, Integer> map = new HashMap<>();
|
||||
map.put("hello", 1);
|
||||
map.put("world", 2);
|
||||
map.put("!", 3);
|
||||
|
||||
// iterating over key-value pairs:
|
||||
map.forEach((k, v) -> {
|
||||
System.out.printf("key = %s, value = %s%n", k, v);
|
||||
});
|
||||
|
||||
// iterating over keys:
|
||||
map.keySet().forEach(k -> System.out.printf("key = %s%n", k));
|
||||
|
||||
// iterating over values:
|
||||
map.values().forEach(v -> System.out.printf("value = %s%n", v));
|
||||
Loading…
Add table
Add a link
Reference in a new issue