Groovy 有合并2个映射的方法吗?

第一个映射是默认选项 [a: true, b: false]。第二个 map-用户 [a:false]传递的选项。Groovy 是否有映射合并方法来获得 [a: false, b:false]

在 Groovy 中实现它不是问题

45117 次浏览

You can use plus:

assert [ a: true, b: false ] + [ a: false ] == [ a: false, b: false ]

Or left shift:

assert [ a: true, b: false ] << [ a: false ] == [ a: false, b: false ]

The difference is that << adds the right hand map into the left hand map. When you use +, it constructs a new Map based on the LHS, and adds the right hand map into it