亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

基于構造函數的五種繼承方法小結

發布時間:2020-09-26 07:57:06 來源:腳本之家 閱讀:136 作者:jingxian 欄目:web開發

1.使用call或apply綁定構造函數

  animal.apply(this.arguments)

2.使用prototype屬性  

  Cat.prototype = new Animal();

  Cat.prototype.constructor = Cat;

  var cat1 = new Cat("大毛","黃色");

  alert(cat1.species); // 動物

3.直接集成prototype屬性

  function Animal(){ }

  Animal.prototype.species = "動物";

 

  Cat.prototype = Animal.prototype;

  Cat.prototype.constructor = Cat;

  var cat1 = new Cat("大毛","黃色");

  alert(cat1.species); // 動物

4.利用空對象作為中介

  var F = function(){};

  F.prototype = Animal.prototype;

  Cat.prototype = new F();

   Cat.prototype.constructor = Cat;

  將上面的方法封裝成一個函數,便于使用:

    function extend(Child, Parent) {

      var F = function(){};

      F.prototype = Parent.prototype;

      Child.prototype = new F();

      Child.prototype.constructor = Child;

      Child.uber = Parent.prototype;

    }

5.拷貝繼承

function extend2(Child, Parent) {

    var p = Parent.prototype;

    var c = Child.prototype;

    for (var i in p) {

      c[i] = p[i];

      }

    c.uber = p;

  }

這個函數的作用,就是將父對象的prototype對象中的屬性,一一拷貝給Child對象的prototype對象。

以上這篇基于構造函數的五種繼承方法小結就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

西吉县| 郁南县| 彰化市| 山阳县| 乌兰浩特市| 朔州市| 时尚| 广昌县| 大渡口区| 张家口市| 九龙城区| 老河口市| 西吉县| 雷山县| 文水县| 平顺县| 荔波县| 襄汾县| 龙南县| 广安市| 高雄市| 工布江达县| 武威市| 房产| 镇宁| 呈贡县| 安吉县| 峨山| 宝丰县| 海门市| 张家港市| 车致| 金湖县| 盈江县| 内黄县| 铁岭市| 连平县| 娱乐| 镇赉县| 饶阳县| 安化县|