js中寻找一个instance的属性,先从instance中找,没有则往其constructor(class)
的prototype中找,还没有,则一直往其parent class的prototype中找,
直到object ..
constructor这东西,写继承得复写一下。
【 在 XeCycle (据说是小 X) 的大作中提到: 】
: conventionally we say "b.prototype = Object.create(a.prototype)", maybe
: also adding "b.prototype.constructor = b"
--
FROM 123.116.144.41