8

我不明白javascript中的这种继承行为我一直看到它是这样定义的:

function GameObject(oImg, x, y) {

    this.x = x;
    this.y = y;
    this.img = oImg;

    this.hit = new Object();
    this.hitBox.x = x;
    this.hitBox.y = y;
    this.hitBox.width = oImg.width;
    this.hitBox.height = oImg.height;

}

Spaceship.prototype = new GameObject();
Spaceship.prototype.constructor = Spaceship;

function Spaceship(){
    console.log("instantiate ship");
    GameObject.apply(this, arguments);
    this.vx = 0;
    this.vy = 0;
    this.speed = 3;
    this.friction = 0.94;
}

但就我而言,这些行:

    this.hitBox.width = oImg.width;
    this.hitBox.height = oImg.height;

当我在我的 Spaceship 构造函数中执行 console.log(this) 时,我可以看到proto属性设置为 Spaceship 而不是 GameObject,如果我删除它们,它会设置为 GameObject。

如果我使用:

 Spaceship.prototype = GameObject.prototype;

我没有更多的问题。这阻止我的原因是我有另一个带有 add() 方法的对象,它使用以下代码检查 GameObject 的对象是否不匹配:

 if(object instanceof GameObject)

我不明白这两行可能会发生什么变化,因此当它们存在时继承会被破坏,我不确定第二种方式的继承是否很好。有人可以告诉我这个吗?:)

4

3 回答 3

14

如果你这样做

Spaceship.prototype = GameObject.prototype;

然后它们都引用同一个对象,因此您不妨将所有内容都包含在 中GameObject,如果您向 中添加某些内容Spaceship.prototype,它也会被添加到GameObject.prototypeSpaceship.prototype您可以通过在分配后添加一些内容来轻松测试它。例如,在您的情况下,您可以看到GameObject.prototype.constructor实际上是Spaceship.

至于

Spaceship.prototype = new GameObject();

这会调用可能具有不良副作用的构造函数,您宁愿使用:

Spaceship.prototype = Object.create(GameObject.prototype);

这里使用的Object.create功能归结为:

Object.create = function( proto ) {
    function f(){}
    f.prototype = proto;
    return new f;
};

不过,现代浏览器已经具备该功能。

于 2012-06-18T17:59:21.003 回答
2

从来没有正确解释过为什么你会出现奇怪的行为this.hitBox(我认为这就是你想说的)。

如果您通过调用父类的构造函数来创建原型来进行继承,则该父类的构造函数将执行一次以创建父类型的实例,然后子类型的所有实例将共享该实例作为它们的原型。

这样做的问题是,如果该构造函数有任何行将可变对象分配给this,那么这些对象将是该原型上的属性,并且对这些对象的任何修改都将反映在子类型的所有实例中:

Spaceship.prototype = new GameObject();
Spaceship.prototype.constructor = Spaceship;

var sps1 = new Spaceship();
var sps2 = new Spaceship();

sps1.hitBox.x = 9;
sps2.hitBox.x = 12;
console.log(sps1.hitBox.x);  // 12   (oh noes! what happened)
console.log(sps2.hitBox.x);  // 12

(“调用构造函数来制作原型”方法还有其他类似的问题,但我将把它留在这里)

@Esailija 的使用建议Object.create(baseObject)是解决此问题的第一步。它创建了一个原型为 的新对象baseObject,但没有在构造函数中设置的东西(这是一件好事,但需要考虑。继续阅读...)。

正如我刚才所说,这将创建一个对象,其中父构造函数中的初始化逻辑从未运行,但在大多数情况下,该逻辑与对象的功能相关。所以你还需要做一件事,就是让子构造函数调用父构造函数:

function Spaceship(oImg, x, y) {
    // call parent constructor on this object and pass in arguments.
    // you could also use default values for the arguments when applicable
    GameObject.call(this, oImg, x, y);

    // remainder of Spaceship constructor...
}

这将确保父构造函数逻辑为每个 new单独Spaceship运行,并执行必要的初始化任务。

于 2015-01-17T21:14:01.743 回答
0
function GameObject(oImg, x, y) {

    this.x = x;
    this.y = y;
    this.img = oImg || {width:null, height: null};

    this.hitBox = new Object();
    this.hitBox.x = x;
    this.hitBox.y = y;
    this.hitBox.width = this.img.width;
    this.hitBox.height = this.img.height;

}


function Spaceship(){
    GameObject.apply(this, arguments);
    this.vx = 0;
    this.vy = 0;
    this.speed = 3;
    this.friction = 0.94;
}
Spaceship.prototype = new GameObject();

var sps1 = new Spaceship();
var sps2 = new Spaceship();

sps1.hitBox.x = 9;
sps2.hitBox.x = 12;
console.log(sps1.hitBox.x);  // 9
console.log(sps2.hitBox.x);  // 12
于 2015-05-23T15:53:37.543 回答