js如何是利用apply實現繼承

來源:互聯網
上載者:User

標籤:

js如何是利用apply實現繼承:
javascript是一種物件導向的語言,當然繼承是它的重要特徵之一,比如常規的可以使用原型實現繼承,不過使用apply可是可以實現繼承的,下面就通過代碼執行個體介紹一下,關於apply函數這裡就不介紹了,具體可以參閱javascript的call()和apply()的作用和區別一章節。 下面看代碼執行個體:

 

function Parent(username){   this.username=username;   this.sayHello=function(){     alert(this.username);   } }   function Child(username,password){   Parent.apply(this,new Array(username));   this.password=password;     this.sayWorld=function(){     alert(this.password);   } } var parent=new Parent("螞蟻部落"); var child=new Child("antzone","8888");   parent.sayHello(); child.sayHello(); child.sayWorld();

 

以上代碼實現了簡單的繼承效果,代碼比較簡單這裡就不多介紹了,如有任何問題可以跟帖留言。
關於this的指向可以參閱javascript的this用法詳解一章節。 

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=11309

更多內容可以參閱:http://www.softwhy.com/javascript/

 

js如何是利用apply實現繼承

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.