原型鏈
JavaScript中實作繼承最簡單的方式就是使用原型鏈,將子類型的原型指向父類型的實例即可,也就是「子類型.prototype = new 父型別();”,實作方法如下:
// 为父类型创建构造函数 function SuperType() { this.name = ['wuyuchang', 'Jack', 'Tim']; this.property = true; } // 为父类型添加方法 SuperType.prototype.getSuerperValue = function() { return this.property; } // 为子类型创建构造函数 function SubType() { this.test = ['h1', 'h2', 'h3', 'h4']; this.subproperty = false; } // 实现继承的关键步骤,子类型的原型指向父类型的实例 SubType.prototype = new SuperType(); // 在此处给子类型添加方法,一定要在实现继承之后,否则会在将指针指向父类型的实例,则方法为空 SubType.prototype.getSubValue = function() { return this.subproperty; } /* 以下为测试代码示例 */ var instance1 = new SubType(); instance1.name.push('wyc'); instance1.test.push('h5'); alert(instance1.getSuerperValue()); // true alert(instance1.getSubValue()); // false alert(instance1.name); // wuyuchang,Jack,Tim,wyc alert(instance1.test); // h1,h2,h3,h4,h5 var instance2 = new SubType(); alert(instance2.name); // wuyuchang,Jack,Tim,wyc alert(instance2.test); // h1,h2,h3,h4
可以看到如上的程式碼就是透過原型鏈實現的一個簡單的繼承,但看到測試程式碼範例中還是存在些問題。相信看了我的博文《物件導向JS基礎講解,工廠模式、建構函數模式、原型模式、混合模式、動態原型模式》的童鞋一定知道原型鏈代碼存在的第一個問題是由於子類型的原型是父類型的實例,也就是子類型的原型中包含的父類型的屬性,從而導致引用類型值的原型屬性會被所有實例所共享。以上程式碼的instance1.name.push('wyc');就可以證明此問題的存在。而原型鏈的第二個問題就是:在建立子類型的實例時,不能傳遞參數給超類型的建構函式。因此我們在實際開發中,很少單獨使用原型鏈。
借用建構子
為了解決原型鏈中存在的兩個問題,開發人員開始使用一種稱為借用建構函式的技術來解決原型鏈中存在的問題。這種技術的實作想法也挺簡單,只需要在子類型的建構子內呼叫父類型的建構子。別忘了,函數只不過是在特定環境中執行程式碼的對象,因此可以透過apply()或call()方法執行建構子。程式碼如下:
// 为父类型创建构造函数 function SuperType(name) { this.name = name; this.color = ['pink', 'yellow']; this.property = true; this.testFun = function() { alert('http://tools.jb51.net/'); } } // 为父类型添加方法 SuperType.prototype.getSuerperValue = function() { return this.property; } // 为子类型创建构造函数 function SubType(name) { SuperType.call(this, name); this.test = ['h1', 'h2', 'h3', 'h4']; this.subproperty = false; } // 在此处给子类型添加方法,一定要在实现继承之后,否则会在将指针指向父类型的实例,则方法为空 SubType.prototype.getSubValue = function() { return this.subproperty; } /* 以下为测试代码示例 */ var instance1 = new SubType(['wuyuchang', 'Jack', 'Nick']); instance1.name.push('hello'); instance1.test.push('h5'); instance1.color.push('blue'); instance1.testFun(); // http://tools.jb51.net/ alert(instance1.name); // wuyuchang,Jack,Nick,hello // alert(instance1.getSuerperValue()); // error 报错 alert(instance1.test); // h1,h2,h3,h4,h5 alert(instance1.getSubValue()); // false alert(instance1.color); // pink,yellow,blue var instance2 = new SubType('wyc'); instance2.testFun(); // http://tools.jb51.net/ alert(instance2.name); // wyc // alert(instance2.getSuerperValue()); // error 报错 alert(instance2.test); // h1,h2,h3,h4 alert(instance2.getSubValue()); // false alert(instance2.color); // pink,yellow
可以看到以上程式碼中子型別SubType的建構函式內透過呼叫父型別"SuperType.call(this, name);",從而實現了屬性的繼承,也可以在子類型建立實例的時候為父類型傳遞參數了,但新的問題又來了。我可以看到我在父型別的建構子中定義了一個方法:testFun,在父型別的原型中定義了一個方法:getSuperValue。可是實例化子型別後仍是無法呼叫父型別的原型中定義的方法getSuperValue,只能呼叫在父型別中建構函式的方法:testFun。這就同創建物件中只使用建構函式模式一樣,使得函數沒有復用性可言。考慮到這些問題,借用構造函數的技術也是很少單獨使用的。
組合繼承(原型鏈+借用建構子)
顧名思義,組合繼承就是結合使用原型鏈與借用建構函式的優點,組合而成的一個模式。實作也很簡單,既然是結合,當然結合了兩方的優點,即原型鏈繼承方法,而在構造函數繼承屬性。具體程式碼實作如下:
// 为父类型创建构造函数 function SuperType(name) { this.name = name; this.color = ['pink', 'yellow']; this.property = true; this.testFun = function() { alert('http://tools.jb51.net/'); } } // 为父类型添加方法 SuperType.prototype.getSuerperValue = function() { return this.property; } // 为子类型创建构造函数 function SubType(name) { SuperType.call(this, name); this.test = ['h1', 'h2', 'h3', 'h4']; this.subproperty = false; } SubType.prototype = new SuperType(); // 在此处给子类型添加方法,一定要在实现继承之后,否则会在将指针指向父类型的实例,则方法为空 SubType.prototype.getSubValue = function() { return this.subproperty; } /* 以下为测试代码示例 */ var instance1 = new SubType(['wuyuchang', 'Jack', 'Nick']); instance1.name.push('hello'); instance1.test.push('h5'); instance1.color.push('blue'); instance1.testFun(); // http://tools.jb51.net/ alert(instance1.name); // wuyuchang,Jack,Nick,hello alert(instance1.getSuerperValue()); // true alert(instance1.test); // h1,h2,h3,h4,h5 alert(instance1.getSubValue()); // false alert(instance1.color); // pink,yellow,blue var instance2 = new SubType('wyc'); instance2.testFun(); // http://tools.jb51.net/ alert(instance2.name); // wyc alert(instance2.getSuerperValue()); // true alert(instance2.test); // h1,h2,h3,h4 alert(instance2.getSubValue()); // false alert(instance2.color); // pink,yellow
以上程式碼透過SuperType.call(this, name);繼承父類型的屬性,透過SubType.prototype = new SuperType();繼承父類型的方法。以上程式碼很方便的解決了原型鏈與借用建構函數所遇到的問題,成為了JavaScript中最常用的實例繼承的方法。
以上是JavaScript繼承之原型鍊與借用建構函式用法實例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!