咖啡脚本代码:
class Animal
constructor: (@name) ->
move: (meters) ->
alert @name + " moved #{meters}m."
class Snake extends Animal
move: ->
alert "Slithering..."
super 5
alert Snake instanceof Animal
这是一个链接。
我真的认为这个结果是真的。我的原因是__extends
编译后的 JavaScript 中的这种方法:
__extends = function (child, parent) {
for(var key in parent) {
if(__hasProp.call(parent, key)) child[key] = parent[key];
}function ctor() {
this.constructor = child;
}
ctor.prototype = parent.prototype;
child.prototype = new ctor();
child.__super__ = parent.prototype;
return child;
};
child.prototype.prototype
是父母。
有人能告诉我为什么吗?我知道以下是正确的:
alert new Snake('a') instanceof Animal