最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Why is there no Object.setPrototypeOf(...) in ECMAScript 5 standard? - Stack Overflow

programmeradmin1浏览0评论

Apparently using __proto__ property is still the main way of manipulating prototype chains, even though this is not standards pliant and IE does not support it. Though you can also construct inheritance through the use of new constructor this seems like an unnecessary plication pared to __proto__ property or standards pliant Object.getPrototypeOf function.

Edit:

As stated in the answers, this method does exist now (ES6 standard). Be aware of the performance warning, though:

Apparently using __proto__ property is still the main way of manipulating prototype chains, even though this is not standards pliant and IE does not support it. Though you can also construct inheritance through the use of new constructor this seems like an unnecessary plication pared to __proto__ property or standards pliant Object.getPrototypeOf function.

Edit:

As stated in the answers, this method does exist now (ES6 standard). Be aware of the performance warning, though: https://developer.mozilla/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/setPrototypeOf

Share Improve this question edited Oct 14, 2024 at 6:29 dumbass 27.3k4 gold badges38 silver badges74 bronze badges asked Jul 1, 2012 at 12:19 JussiRJussiR 2,0753 gold badges21 silver badges23 bronze badges 1
  • 5 good news. it seems Object.setPrototypeOf() got into ES6 webreflection.blogspot.pt/2013/05/… – Paulo R. Commented May 16, 2013 at 12:27
Add a ment  | 

2 Answers 2

Reset to default 9

It is part of the ES6 harmony draft:

https://developer.mozilla/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/setPrototypeOf

I am using it now in the latest release of Chrome.

var proto = {
    foo: 'bar'
};

var object = {};

Object.setPrototypeOf(object, proto);

console.assert(object.foo == 'bar');

Brendan Eich says this here:

Object.setPrototypeOf is not going to happen. Writable __proto__ is a giant pain to implement (must serialize to cycle-check) and it creates all sorts of type-confusion hazards. You may think you want it as a low-level sharp instrument. JS is not that language. Higher-level forms for classes and mixins seem much better and do not involve such sharp edges.

发布评论

评论列表(0)

  1. 暂无评论