为什么一个类不是其父类的“instanceof”?

时间:2012-07-16 15:56:07

标签: coffeescript

Coffeescript代码:

class Animal
  constructor: (@name) ->

  move: (meters) ->
    alert @name + " moved #{meters}m."

class Snake extends Animal
  move: ->
    alert "Slithering..."
    super 5

alert Snake instanceof Animal

这是a link

我真的认为这个结果是真的。 我的理由是编译JavaScript中的这个__extends方法:

__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

1 个答案:

答案 0 :(得分:6)

您的SnakeAnimal的子类:

class Snake extends Animal

这意味着Snake("类")实际上是Function的实例,而不是Animal。另一方面,Snake对象将是Animal的实例:

alert Snake instanceof Function     # true
alert (new Snake) instanceof Animal # true

如果您尝试移动Snake实例:

(new Snake('Pancakes')).move()

您会看到正确的方法被调用。

演示:http://jsfiddle.net/ambiguous/3NmCZ/1/