变量引用

关于变量引用
def xxx1 =[1,2,3]
def ooo1 = xxx1
 xxx1 << 69
print "$xxx1"
print " $ooo1\n"
// [1, 2, 3, 69] [1, 2, 3, 69]
// xxx1和ooo1指向了同一个对象,更改xxx1指向的对象,ooo1变化。

def xxx12 =[1,2,3]
def ooo12 = xxx12
 xxx12 = [69:96]
print "$xxx12"
print " $ooo12\n"
// [69:96] [1, 2, 3]
// 这里xxx12指向新对象,ooo12仍指向老对象,所以不变。

def xxx2 =[1,2,3]
def ooo2 = xxx2.value
 xxx2 << 69
print "$xxx2"
print " $ooo2\n"
// [1, 2, 3, 69] [1, 2, 3]
// 为ooo2赋值,不指向xxx2指向的对象。

def xxx3 = 69
def ooo3 = xxx3
 xxx3+=27
print "$xxx3"
print " $ooo3\n"
// 96 69
// 69为一个对象,加法计算使xxx3指向了新对象,而不是修改老对象,所以ooo3没有变。如果此时使ooo3也指向新对象,则69这个对象便成为垃圾数据,将被自动回收。

你可能感兴趣的:(变量引用)