4
var myObject = new Object();
var myObjectCopy = myObject;

myObject.Name = 'alav';

// logs Name alav on both variable
console.log(myObject, myObjectCopy);

myObject = null;

// logs myObject as null and myObjectCopy still has name 'alav' -> bcoz of reference copy
console.log(myObject, myObjectCopy);

下面没有复制相同的行为。

var objA = {property: 'value'};
var pointer1 = objA;

// update the objA.property, and all references (pointer1 & pointer2) are updated
objA.property = pointer1.property;
objA.property= null;
// logs 'null null' because objA, pointer1 all reference the same object
console.log(objA.property, pointer1.property);

为什么上述引用复制行为不适用于对象的内部属性(此处为属性)?

objA.property = 指针1.property;-> 不是参考副本吗?

4

1 回答 1

3

如果您设置对 null 的引用,因此实际对象没有变化

myObject = null;// setting reference to null object , but no change in actual object 

在第二种情况下,您通过将属性设置为 null 来更改对象(更改对象的状态)

objA.property = null; 

因此在每个引用中,属性的值都将为 null

在此处输入图像描述

于 2013-07-20T11:01:53.620 回答