function Foo()
Foo其实类似于java中的constructor,Foo.prototype类似于Java中的class(但是这个里面不包括constructor),所以想象一下就是Foo+Foo.prototype=一个完整的Java Class。
当使用Foo初始化一个对象,使用foo = new Foo();然后Foo调用自身生成一个foo对象,同时把刚生成的对象foo附加一个属性[[prototype]]然后链接到Foo.prototype完成一个继承链,foo.[[prototype]] = Foo.prototype,注意参考emca spec理解啥是[[prototype]],这里的[[prototype]]带两个方括号,跟Foo.prototype完全不是指的一个东西。
在chrome的dev tools中,这个[[prototype]]可以使用__proto__显示出来。
【 在 zhanghaoX (环顾四方有效) 的大作中提到: 】
: 标 题: 继续问原型对象的问题
: 发信站: 水木社区 (Wed Oct 14 23:47:34 2015), 站内
:
: Example 9-1. A simple JavaScript class
:
: // range.js: A class representing a range of values.
: // This is a factory function that returns a new range object.
:
: function range(from, to)
: {
: // Use the inherit() function to create an object that inherits from the
: // prototype object defined below. The prototype object is stored as
: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~在哪里?
: // a property of this function, and defines the shared methods (behavior)
: // for all range objects.
: var r = inherit(range.methods);
: // Store the start and end points (state) of this new range object.
: // These are noninherited properties that are unique to this object.
: r.from = from;
: r.to = to;
: // Finally return the new object
: return r;
: }
:
: // This prototype object defines methods inherited by all range objects.
: // 下面的定义是一个对象直接量啊, 到底是定义的一个“range.methods”对象(对象不能这么命名吧),还是定义range对象的methods属性? prototype object到底是指啥?
: range.methods =
: {
:
: // Return true if x is in the range, false otherwise
: // This method works for textual and Date ranges as well as numeric.
: includes: function(x) { return this.from <= x && x <= this.to; },
: // Invoke f once for each integer in the range.
: // This method works only for numeric ranges.
: foreach: function(f) {
: for(var x = Math.ceil(this.from); x <= this.to; x++) f(x);
: },
: // Return a string representation of the range
: toString: function() { return "(" + this.from + "..." + this.to + ")"; }
:
: };
:
:
:
: --
:
: ※ 修改:·zhanghaoX 于 Oct 14 23:48:09 2015 修改本文·[FROM: 111.196.70.*]
※ 修改:·iJava 于 Oct 15 01:04:02 2015 修改本文·[FROM: 58.246.142.*]
: ※ 来源:·水木社区
http://newsmth.net·[FROM: 111.196.70.*]
--
修改:zhanghaoX FROM 111.196.70.*
FROM 58.246.142.*