map put值 使用匿名函数

Posted hnqm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了map put值 使用匿名函数相关的知识,希望对你有一定的参考价值。

 1       List<Map<String, Object>> list = setRoleMenuRlMapper.selectMapByParams(params);
 2 //         Map map = new HashMap<String, Object>();
 3 //         map.put("hahaha","111");
 4 //         map.put("xixi", "22222222");
 5 //        list.add(map);
 6         
 7         
 8         list.add(new HashMap<String, Object>() {
 9             {
10             put("haha","1111");
11             put("xixi", "22222222");}
12         });

代码块会 执行

以上是关于map put值 使用匿名函数的主要内容,如果未能解决你的问题,请参考以下文章

匿名函数

内置函数,匿名函数

filter,map和reduce函数

内置函数,匿名函数

匿名函数和几个和匿名函数相互合作

python---------匿名函数(map,filter,zip..)