在Groovy中实现它并不是问题。我问的方法开箱即用
解决方法 您可以使用加号:assert [ a: true,b: false ] + [ a: false ] == [ a: false,b: false ]
或左移:
assert [ a: true,b: false ] << [ a: false ] == [ a: false,b: false ]
区别在于<< adds the right hand map into the left hand map.当您使用时,它constructs a new Map based on the LHS,并添加右手地图
总结以上是内存溢出为你收集整理的字典 – Groovy有合并2地图的方法吗?全部内容,希望文章能够帮你解决字典 – Groovy有合并2地图的方法吗?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)