javascript在Object.create' s proto参数

时间:2017-10-21 12:16:18

标签: javascript javascript-objects

我试图理解Object和Object.prototype之间的区别。因为要创建一个空对象,所以使用了Object.prototype。我觉得为什么不反对。

我正在通过以下方式创建一个对象。

方法1:

o = Object.create(Object.prototype,{ p : {value: "test"} });
console.log(o.__proto__);

结果是:

Object {__defineGetter__: function, __defineSetter__: function, hasOwnProperty: function, __lookupGetter__: function, __lookupSetter__: function…}

console.log(o)

结果是

Object {p: "test"}
    p : "test"
    __proto__ : Object
        constructor : function Object()
        hasOwnProperty : function hasOwnProperty()
        isPrototypeOf : function isPrototypeOf()
        propertyIsEnumerable : function propertyIsEnumerable()
        toLocaleString : function toLocaleString()
        toString : function toString()
        valueOf : function valueOf()
        __defineGetter__ : function __defineGetter__()
        __defineSetter__ : function __defineSetter__()
        __lookupGetter__ : function __lookupGetter__()
        __lookupSetter__ : function __lookupSetter__()
        get __proto__ : function __proto__()
        set __proto__ : function __proto__()

VS

o = Object.create(Object,{ p : {value: "test"} });
console.log(o.__proto__);

结果是:

function Object() { [native code] }

console.log(o)

结果是:

Function {p: "test"}
    p : "test"
    __proto__ : function Object()
        arguments : null
        assign : function assign()
        caller : null
        create : function create()
        defineProperties : function defineProperties()
        defineProperty : function defineProperty()
        entries : function entries()
        freeze : function freeze()
        getOwnPropertyDescriptor : function getOwnPropertyDescriptor()
        getOwnPropertyDescriptors : function getOwnPropertyDescriptors()
        getOwnPropertyNames : function getOwnPropertyNames()
        getOwnPropertySymbols : function getOwnPropertySymbols()
        getPrototypeOf : function getPrototypeOf()
        is : function is()
        isExtensible : function isExtensible()
        isFrozen : function isFrozen()
        isSealed : function isSealed()
        keys : function keys()
        length : 1
        name : "Object"
        preventExtensions : function preventExtensions()
        prototype : Object
        seal : function seal()
        setPrototypeOf : function setPrototypeOf()
        values : function values()
        __proto__ : function ()
        [[FunctionLocation]] : <unknown>

总的来说,我发现:

o = {};
// is equivalent to:
o = Object.create(Object.prototype);

为什么不

o = {};
// is equivalent to:
o = Object.create(Object);

2 个答案:

答案 0 :(得分:2)

原因Object是用于构建对象的函数:

Object instanceof Function

所以你也可以这样做:

const o = new Object();

如果您已经在javascript中阅读了有关继承的更多信息,您知道调用具有new的函数实际构建了一个继承自构造函数.prototype属性的对象,然后使用这个是该对象,所以上面的行等于:

const o = Object.create( Object.prototype );
Object.call( o );

如果你这样做

Object.create( Object )

您将创建一个继承构造函数的对象。我承认 Object 实际上是一个函数非常令人困惑,因此继承自 Object的 Function.prototype 。原型 ......

答案 1 :(得分:1)

使用js-calendar.js中的代码:

function defineProperties(target, props)
{
  '''
  Object.defineProperty(target, descriptor.key, descriptor);
}
return function(Constructor,protoProps, staticProps)
{
   if (protoProps) defineProperties(Constructor.prototype,protoProps)
   if (staticProps) defineProperties(Constructor,protoProps)
}

如果在第一行中删除了.prototype,则不会创建'object'.constructor,因此new不会继承任何内容。由于第一行,因此不需要第二行。