Java中往Map里放数据有多种方法,其中常用的有以下几种:
Map<String, Integer> map = new HashMap<>();
map.put("key1", 1);
map.put("key2", 2);
Map<String, Integer> map1 = new HashMap<>();
map1.put("key1", 1);
map1.put("key2", 2);
Map<String, Integer> map2 = new HashMap<>();
map2.put("key3", 3);
map2.put("key4", 4);
map1.putAll(map2);
List<String> list = Arrays.asList("key1", "key2", "key3");
Map<String, Integer> map = list.stream()
.collect(Collectors.toMap(Function.identity(), String::length));
Map<String, Integer> map = new TreeMap<>();
map.put("key1", 1);
map.put("key3", 3);
map.put("key2", 2);
以上就是Java中往Map里放数据的几种常用方法,根据具体的需求选择合适的方法即可。