混淆函数原型和object.getPrototypeOf

时间:2013-07-29 08:21:51

标签: javascript constructor prototype

我知道有三种获取对象原型的方法,在下面的例子中,三种方法的结果是相同的:

    function Person(name) {
        this.name = name;
    }

    Person.prototype.say = function () {
        console.log("hello");
    }

    var person = new Person();

    console.log(person.constructor.prototype); //Person {say: function}
    console.log(Object.getPrototypeOf(person)); //Person {say: function}
    console.log(person.__proto__); //Person {say: function}

但是当检查由Object.create创建的对象时,结果似乎不同:

    var person = {
        name: "Lee",
        age: "12"
    }

    var per1 = Object.create(person);

    console.log(per1.constructor.prototype) //Object {}
    console.log(Object.getPrototypeOf(per1)) //Object {name: "Lee", age: "12"}
    console.log(per1.__proto__) //Object {name: "Lee", age: "12"}

对象是否会遵循其构造函数的原型?如何解释上面的例子?

请参阅此处的演示:http://jsfiddle.net/hh54188/A9SsM/

1 个答案:

答案 0 :(得分:0)

getPrototypeof只是__proto__的一个实现,但它们现在都被视为已弃用或非标准。至于你的第三个例子,我不相信你有任何输出,因为它应该是per1.prototype.constructor。如果你不是那个意思,我找不到在构造函数中的任何地方记录的函数。