function Person(name) {
this.name = name;
}
var rob = new Person('Rob');
__proto__
)是Person.prototype,因此rob是一个人。但是
console.log(Person.prototype);
输出
Person {}
Person.prototype是一个对象吗?阵列?一个人?
如果它是一个Object,该原型是否也有原型?
更新我从这个问题中学到的知识(2014年1月24日,星期五,上午11:38:26)
function Person(name) {
this.name = name;
}
var rob = new Person('Rob');
// Person.prototype references the object that will be the actual prototype (x.__proto__)
// for any object created using "x = new Person()". The same goes for Object. This is what
// Person and Object's prototype looks like.
console.log(Person.prototype); // Person {}
console.log(Object.prototype); // Object {}
console.log(rob.__proto__); // Person {}
console.log(rob.__proto__.__proto__); // Object {}
console.log(typeof rob); // object
console.log(rob instanceof Person); // true, because rob.__proto__ == Person.prototype
console.log(rob instanceof Object); // true, because rob.__proto__.__proto__ == Object.prototype
console.log(typeof rob.__proto__); // object
console.log(rob.__proto__ instanceof Person); // false
console.log(rob.__proto__ instanceof Object); // true, because rob.__proto__.__proto__ == Object.prototype
答案 0 :(得分:4)
Person.prototype是一个对象吗?
是。一切 (有趣) 是一个对象:-)详见How is almost everything in Javascript an object?。
数组?
不,绝对不是。
一个人?
取决于。大多数人会说它不是Person
的实例 - 它是所有人的本质(他们的原型:-)。但是,console.log
似乎可以识别它,因为它具有指向.constructor
构造函数的Person
属性。
如果它是一个Object,该原型是否也有原型?
是。每个对象都有一个原型。这些构建了所谓的原型链,其末尾是null
引用。在您的特定示例中,它是
rob
|
v
Person.prototype
|
v
Object.prototype
|
v
null
答案 1 :(得分:-1)
typeof Person === "function"
typeof Person.prototype === "object"