原型中定义的变量是否跨对象共享?

时间:2010-10-26 09:02:31

标签: javascript prototype

我创建了对象

e this
testObj.prototype = {
    cVar: 15,
    init: function(c){
        /*initialization code*/
        this.cVar = c;
    }
};

var a = new testObj(10);
var b = new testObj(20);

现在两个对象的cVar值都是20.它们是否共享变量?我如何为每个对象获得单独的变量?

1 个答案:

答案 0 :(得分:6)

是的,他们是共享的。对于单独的属性,在构造函数中定义它们:

function Ctor() {
    this.notShared = 1;
};

Ctor.prototype.shared = 2;