javascript進階特性之"繼承"

來源:互聯網
上載者:User

標籤:

javaScript中並不存在繼承的感念..但是我們可以根據javaScript的原型進行類比JavaScript的"繼承":

1.寫兩個函數對象,將其中的一個函數賦值給另一個函數對象的原型:

 <script type="text/javascript">  function A(){this.a = "a";this.sayA = function(){alert("this is a.");}}var a = new A();function B(){this.b = "b";this.sayB = function(){alert("this is b.");}}B.prototype = a;//測試:函數對象B就"繼承"了函數對象Avar b = new B();alert(b.b);b.sayB();alert(b.a);b.sayA();  </script>
運行結果:



2.只繼承於原型(定義A的函數對象,定義A函數對象的原型.定義B函數對象,把A對象的函數原型賦值給B的原型)

function A(){}A.prototype = {a : "a",sayA : function(){alert("this is a.")}}function B(){this.b = "b";this.sayB = function(){alert("this is b.");}}B.prototype = A.prototype;var b = new B();alert(b.b);b.sayB();alert(b.a);b.sayA();

3.實現多繼承

<script type="text/javascript">  function A(){}A.prototype = {a : "a",sayA : function(){alert("this is a.")}}function B(){}
B.prototype = A.prototype;
B.prototype.b = "b";B.prototype.sayB = function(){alert("this is b.")}var b = new B();alert(b.a);b.sayA();alert(b.b);b.sayB();  </script>

* 分析得出這句話出問題了
* * 因為B.prototype多次調用
* * 出現的順序有關係?誰先定義,誰被覆蓋
* * 原型定義屬性和方法的形式有關係?沒有關係
 
* 條件:
* * 先實現函數對象B"繼承"函數對象A的內容
* * 再利用原型為函數對象B增加屬性和方法(分散形式)
 






著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

javascript進階特性之"繼承"

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.