java 数组1“[{month=1, num=2}]”和数组“[{month=3, num=1}, {month=1, num=2}]”整合成一个list
时间: 2024-05-02 12:20:30 浏览: 27
Asp.NetFunctionCollection.rar_4 3 2 1_毫秒 年月日
以下是Java代码实现:
```java
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class Example {
public static void main(String[] args) {
Map<Integer, Integer> map1 = new HashMap<>();
map1.put(1, 2);
Map<Integer, Integer> map2 = new HashMap<>();
map2.put(3, 1);
map2.put(1, 2);
List<Map<Integer, Integer>> list = new ArrayList<>();
list.add(map1);
list.add(map2);
System.out.println(list);
}
}
```
输出结果为:
```
[{1=2}, {1=2, 3=1}]
```
注意:数组中的键值对需要转换成Java中的Map对象才能存储到List中。
阅读全文