34

我有以下代码:

    class Animal
        constructor: (@name) -> 
        say: () -> console.log "Hello from animal called #{ @name }"

    class Dog extends Animal

        say: () ->
            super.say()
            console.log "Hello from dog called #{ @name }"

    a = new Animal('Bobby')
    a.say()

    d = new Dog("Duffy")
    d.say()            

结果不是

Hello from animal called Bobby
Hello from animal called Duffy
Hello from dog called Duffy

但我收到以下错误:

Hello from animal called Bobby
Hello from animal called Duffy
Uncaught TypeError: Cannot call method 'say' of undefined

为什么 super 是未定义的?如何调用父方法以扩展它?谢谢

4

1 回答 1

69

我自己找到了答案,应该是:

class Dog extends Animal

    say: () ->
        super
        console.log "Hello from dog called #{ @name }"
于 2012-07-17T10:08:24.473 回答