在Java中,有多种方法可以初始化和赋值给Map对象。以下是一些常见的方法:
Map<String, Integer> map = new HashMap<>();
map.put("key1", 1);
map.put("key2", 2);
Map<String, Integer> map = new HashMap<>(Map.of("key1", 1, "key2", 2));
或者:
Map<String, Integer> map = new HashMap<>(Map.ofEntries(
Map.entry("key1", 1),
Map.entry("key2", 2)
));
putAll()
方法将另一个Map对象的内容复制到新的Map对象中:Map<String, Integer> originalMap = new HashMap<>();
originalMap.put("key1", 1);
originalMap.put("key2", 2);
Map<String, Integer> newMap = new HashMap<>();
newMap.putAll(originalMap);
Stream
API来初始化和赋值:Map<String, Integer> map = Stream.of(
new AbstractMap.SimpleEntry<>("key1", 1),
new AbstractMap.SimpleEntry<>("key2", 2)
).collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));
以上是一些常见的方法,根据具体需求和使用场景,可以选择适合的初始化和赋值方法。