javascript - 浅拷贝问题

时间:2012-09-21 18:32:42

标签: javascript

我只是在javascript中尝试了一些简单的东西

name = 'velu' 
fname = name
name = 'valu'
console.log(fname) // would still print as velu...

如何处理生成对象原型的情况发生变化,生成的对象仍然有旧对象的副本..

情况......

function Cat(name){  
this.name = name  
}
var garfield = new Cat('Garfield')
Cat.prototype.greet = function(){
console.log('Meow, I am ' + this.name)
}
function Animal(){}
Cat.prototype = new Animal
Cat.prototype.constructor = Cat 
Animal.prototype.breed = function(){
console.log('Making a new animal!')
return new this.constructor()
}
 var kitty = garfield.breed() // this will not work as it garfield still is pointing to the old prototype object of Cat ...

感谢

1 个答案:

答案 0 :(得分:3)

您必须创建一个对象,该对象通过引用传递:

var name = { Value: 'velu' };
var fname = name;
name.Value = 'valu';
console.log(fname.Value);