兩個List巢狀Map,如何實現乙個給另外乙個賦值

2021-10-06 04:33:08 字數 1284 閱讀 4788

上個公司的同事有個關於頁面運算元據庫的需求,涉及到這一塊,問了我下如何實現這個功能,在此做個筆記。

下面展示一些內聯**片

list> list1 =

newarraylist

>()

; map map1 =

newhashmap

(); map1.

put(

"1_1"

,null);

map1.

put(

"1_2"

,null);

map map2 =

newhashmap

(); map2.

put(

"2_1"

,null);

map2.

put(

"2_2"

,null);

map map5 =

newhashmap

(); map5.

put(

"3_1"

,null);

map5.

put(

"3_2"

,null);

list1.

add(map1)

; list1.

add(map2)

; list1.

add(map5);

list> list2 =

newarraylist

>()

; map map3 =

newhashmap

(); map3.

put(

"1_1"

,"3");

map3.

put(

"1_2"

,"4");

map map4 =

newhashmap

(); map4.

put(

"2_1"

,"5");

map4.

put(

"2_2"

,"6");

list2.

add(map3)

; list2.

add(map4)

;for

(map m1 : list1)}}

} system.err.

println

(list1.

tostring()

);

執行結果如下:

[, , ]

python實現兩個字典合併,兩個list合併

1.兩個字典 a b 合併1 dict a,b 操作如下 a b dict a,b 合併2 dict a.items b.items 如www.cppcns.com下 a b dict a.items b.items 合併3 c c.update a c.update b 輸出c 如下 a b bg...

兩個Repeater巢狀使用

在c 中有時存在著兩個巢狀迴圈的存在,此時可以使用兩個repeater進行迴圈獲取到。例如 aspx頁面中 面部護膚熱銷排行榜 很明顯的是,此時在頁面布局中是存在著兩個repeater存在的。aspx.cs頁面中 region 初始化頁面 public void initdata string us...

Scala 合併兩個Map

把scala的兩個map合併,合併的時候會遇到相同的鍵和不同的鍵,scala val m1 map 1 10,2 4 m1 scala.collection.immutable.map int,int map 1 10,2 4 scala val m2 map 2 5,4 8 m2 scala.co...