I want to perform a copy and get two different objects so that I can work on the copy without impacting the original.
I have this code (groovy 2.0.5):
def a = [[1,5,2,1,1], ["one", "five", "two", "one", "one"]]
def b = a
b.add([6,6,6,6,6,6])
println a
println b
that produces:
[[1, 5, 2, 1, 1], [one, five, two, one, one], [6, 6, 6, 6, 6, 6]]
[[1, 5, 2, 1, 1], [one, five, two, one, one], [6, 6, 6, 6, 6, 6]]
seems like b and a are actually the same object
I can fix it in this way:
def a = [[1,5,2,1,1], ["one", "five", "two", "one", "one"]]
def b = []
a.each {
b.add(it)
}
b.add([6,6,6,6,6])
println a
println b
that produces my wanted result:
[[1, 5, 2, 1, 1], [one, five, two, one, one]]
[[1, 5, 2, 1, 1], [one, five, two, one, one], [6, 6, 6, 6, 6]]
But now look at this, where I want the original object and a copy with unique and sorted elements:
def a = [[1,5,2,1,1], ["one", "five", "two", "one", "one"]]
def b = a
b.each {
it.unique().sort()
}
println a
println b
that produces:
[[1, 2, 5], [five, one, two]]
[[1, 2, 5], [five, one, two]]
If I try the same fix this time it doesn't work:
def a = [[1,5,2,1,1], ["one", "five", "two", "one", "one"]]
def b = []
a.each {
b.add(it)
}
b.each {
it.unique().sort()
}
println a
println b
that still produces:
[[1, 2, 5], [five, one, two]]
[[1, 2, 5], [five, one, two]]
What's going on ?