在Java中,可以使用以下方法来初始化Map的大小:
Map<String, Integer> map = new HashMap<>(10); // 初始化HashMap的初始容量为10
Map<String, Integer> map1 = new HashMap<>();
map1.put("key1", 1);
map1.put("key2", 2);
// 初始化一个具有与map1相同大小的空Map
Map<String, Integer> map2 = new HashMap<>(map1.size());
// 将map1的元素添加到map2中
map2.putAll(map1);
请注意,即使指定了初始容量大小,Map的实际容量仍然会根据需要进行动态调整。因此,不必过于担心容量的准确性,Java的Map实现会自动处理。