您好,登錄后才能下訂單哦!
這篇文章主要介紹了JavaScript如何實現繼承,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
1、寄生式繼承
基于某個對象創建一個對象,然后增強對象,返回對象。
function create(original){ // 通過調用函數創建一個新對象 var clone = object(original); // 以某種方式增強對象 clone.sayHi = function(){ console.log('hi') } return clone; } var person = { name: 'chen' } var person1 = create(person); person1.sayHi();
2、原型鏈繼承
將父類的實例作為子類的繼承。
function Parent(){ this.name = 'parent' } Parent.prototype.sayName = function(){ return this.name } function Child(){ } // 繼承了Parent Child.prototype = new Parent(); var child1=new Child(); child1.say();
3、組合繼承
使用原型鏈繼承共享的屬性和方法,通過借用構造函數繼承實例屬性。
function Parent(name){ this.name = name; this.arr = [1,2,3] } Parent.prototype.sayName = function(){ console.log(this.name) } function Child(name,age){ // 繼承屬性 Parent.call(this, name) this.age=age } // 繼承方法 Child.prototype = new Parent() Child.prototype.constructor = Child; Child.prototype.sayAge = function(){ console.log(this.age) } var child1=new Child('chen',21); child1.arr.push(4); //[1,2,3,4] child1.sayName() // 'chen' child1.sayAge() // 21 var child2=new Child('miao', 12) child2.arr // [1,2,3] child2.sayName() // "miao" child2.sayAge() // 12
感謝你能夠認真閱讀完這篇文章,希望小編分享的“JavaScript如何實現繼承”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。