标签: string list groovy
我想在字符串列表中为每个字符串附加一个字符串。我想做这样的事情
def a = 'a ' def b = 'b ' [a,b].each { it += 'yo' } assertEquals a, 'a yo' assertEquals b, 'b yo'
但显然这不起作用。
答案 0 :(得分:8)
你可以做到
(a,b) = [a,b].collect { "$it yo" }