溫馨提示×

java怎么向list中添加map

小億
267
2023-09-25 11:55:11
欄目: 編程語言

要向List中添加Map,可以使用List的add方法。下面是一個示例代碼:

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class Main {
public static void main(String[] args) {
List<Map<String, Integer>> list = new ArrayList<>();
Map<String, Integer> map1 = new HashMap<>();
map1.put("key1", 1);
map1.put("key2", 2);
list.add(map1);
Map<String, Integer> map2 = new HashMap<>();
map2.put("key3", 3);
map2.put("key4", 4);
list.add(map2);
System.out.println(list);
}
}

在這個例子中,我們先創(chuàng)建了一個List<Map<String, Integer>>類型的list。然后通過HashMap創(chuàng)建了兩個Map并分別添加到list中。最后輸出list的內容。

運行結果為:

[{key1=1, key2=2}, {key3=3, key4=4}]

可以看到,list中成功添加了兩個Map對象。

0