W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎勵
你有一些通用方法,你想把他們包含到很多不同的類中。
使用mixOf庫函數(shù),它會生成一個混合父類。
mixOf = (base, mixins...) ->
class Mixed extends base
for mixin in mixins by -1 #earlier mixins override later ones
for name, method of mixin::
Mixed::[name] = method
Mixed
...
class DeepThought
answer: ->
42
class PhilosopherMixin
pontificate: ->
console.log "hmm..."
@wise = yes
class DeeperThought extends mixOf DeepThought, PhilosopherMixin
answer: ->
@pontificate()
super()
earth = new DeeperThought
earth.answer()
# hmm...
# => 42
這適用于輕量級的混合。因此你可以從基類和基類的祖先中繼承方法,也可以從混合類的基類和祖先中繼承,但是不能從混合類的祖先中繼承。與此同時,在聲明了一個混合類后,此后的對這個混合類進(jìn)行的改變是不會反應(yīng)出來的。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: