为什么将prototype的构造函数设置为其构造函数?

时间:2012-02-18 17:04:22

标签: javascript

关于此脚本的一行:

function Vehicle(hasEngine, hasWheels) {
    this.hasEngine = hasEngine || false;
    this.hasWheels = hasWheels || false;
}

function Car (make, model, hp) {
    this.hp = hp;
    this.make = make;
    this.model = model;
}

Car.prototype = new Vehicle(true, true);
Car.prototype.constructor = Car; 
Car.prototype.displaySpecs = function () {
    console.log(this.make + ", " + this.model + ", " + this.hp + ", " + this.hasEngine + ", " + this.hasWheels);
}

var myAudi = new Car ("Audi", "A4", 150);
myAudi.displaySpecs(); // logs: Audi, A4, 150, true, true

我的问题是:

是什么
Car.prototype.constructor = Car;  

做什么?更重要的是,不这样做的后果是什么,以及哪种情况最有用?

1 个答案:

答案 0 :(得分:19)

它恢复您覆盖的原始原型对象上的.constructor属性。人们会恢复它,因为它应该在那里。

有些人喜欢......

if (my_obj.constructor === Car) { ... }

这不是必需的,因为instanceof是一个更好的测试IMO。

if (my_obj instanceof Car) { ... }

if (my_obj instanceof Vehicle) { ... }