关于此脚本的一行:
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;
做什么?更重要的是,不这样做的后果是什么,以及哪种情况最有用?
答案 0 :(得分:19)
它恢复您覆盖的原始原型对象上的.constructor
属性。人们会恢复它,因为它应该在那里。
有些人喜欢......
if (my_obj.constructor === Car) { ... }
这不是必需的,因为instanceof
是一个更好的测试IMO。
if (my_obj instanceof Car) { ... }
if (my_obj instanceof Vehicle) { ... }