Answers for "initialize hash map java"

3

java 11 initialize map

Map<String, String> emptyMap = Map.of();
Map<String, String> singletonMap = Map.of("key1", "value");
Map<String, String> map = Map.of("key1","value1", "key2", "value2");
Posted by: Guest on June-22-2020
0

java initialize map with values in one line

Map<String, Integer> map = Stream.of(
  new AbstractMap.SimpleImmutableEntry<>("idea", 1),    
  new AbstractMap.SimpleImmutableEntry<>("mobile", 2))
  .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));
Posted by: Guest on December-09-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language