摘要:前言作為面向?qū)ο蟮娜躅愋驼Z言,繼承也是其非常強(qiáng)大的特性之一。那么如何在中實現(xiàn)繼承呢讓我們拭目以待。
前言
JS作為面向?qū)ο蟮娜躅愋驼Z言,繼承也是其非常強(qiáng)大的特性之一。那么如何在JS中實現(xiàn)繼承呢?讓我們拭目以待。
JS繼承的實現(xiàn)方式既然要實現(xiàn)繼承,那么首先我們得有一個父類,代碼如下:
// 定義一個動物類 function Animal (name) { // 屬性 this.name = name || "Animal"; // 實例方法 this.sleep = function(){ console.log(this.name + "正在睡覺!"); } } // 原型方法 Animal.prototype.eat = function(food) { console.log(this.name + "正在吃:" + food); };
1、原型鏈繼承
核心: 將父類的實例作為子類的原型 function Cat(){ } Cat.prototype = new Animal(); Cat.prototype.name = "cat"; // Test Code var cat = new Cat(); console.log(cat.name); console.log(cat.eat("fish")); console.log(cat.sleep()); console.log(cat instanceof Animal); //true console.log(cat instanceof Cat); //true
特點(diǎn):
非常純粹的繼承關(guān)系,實例是子類的實例,也是父類的實例
父類新增原型方法/原型屬性,子類都能訪問到
簡單,易于實現(xiàn)
缺點(diǎn):
可以在Cat構(gòu)造函數(shù)中,為Cat實例增加實例屬性。如果要新增原型屬性和方法,則必須放在new Animal()這樣的語句之后執(zhí)行。
無法實現(xiàn)多繼承
來自原型對象的引用屬性是所有實例共享的。(詳細(xì)請看附錄代碼:示例1)
創(chuàng)建子類實例時,無法向父類構(gòu)造函數(shù)傳參
推薦指數(shù):★★(3、4兩大致命缺陷)
2、構(gòu)造繼承
核心:使用父類的構(gòu)造函數(shù)來增強(qiáng)子類實例,等于是復(fù)制父類的實例屬性給子類(沒用到原型)
function Cat(name){ Animal.call(this); this.name = name || "Tom"; } // Test Code var cat = new Cat(); console.log(cat.name); console.log(cat.sleep()); console.log(cat instanceof Animal); // false console.log(cat instanceof Cat); // true
優(yōu)點(diǎn):
解決了1中,子類實例共享父類引用屬性的問題
創(chuàng)建子類實例時,可以向父類傳遞參數(shù)
可以實現(xiàn)多繼承(call多個父類對象)
缺點(diǎn):
實例并不是父類的實例,只是子類的實例
只能繼承父類的實例屬性和方法,不能繼承原型屬性/方法
無法實現(xiàn)函數(shù)復(fù)用,每個子類都有父類實例函數(shù)的副本,影響性能
推薦指數(shù):★★(缺點(diǎn)3)
3、實例繼承
核心:為父類實例添加新特性,作為子類實例返回
function Cat(name){ var instance = new Animal(); instance.name = name || "Tom"; return instance; } // Test Code var cat = new Cat(); console.log(cat.name); console.log(cat.sleep()); console.log(cat instanceof Animal); // true console.log(cat instanceof Cat); // false
特點(diǎn):
不限制調(diào)用方式,不管是new 子類()還是子類(),返回的對象具有相同的效果
缺點(diǎn):
實例是父類的實例,不是子類的實例
不支持多繼承
推薦指數(shù):★★
4、拷貝繼承
function Cat(name){ var animal = new Animal(); for(var p in animal){ Cat.prototype[p] = animal[p]; } Cat.prototype.name = name || "Tom"; } // Test Code var cat = new Cat(); console.log(cat.name); console.log(cat.sleep()); console.log(cat instanceof Animal); // false console.log(cat instanceof Cat); // true
特點(diǎn):
支持多繼承
缺點(diǎn):
效率較低,內(nèi)存占用高(因為要拷貝父類的屬性)
無法獲取父類不可枚舉的方法(不可枚舉方法,不能使用for in 訪問到)
推薦指數(shù):★(缺點(diǎn)1)
5、組合繼承
核心:通過調(diào)用父類構(gòu)造,繼承父類的屬性并保留傳參的優(yōu)點(diǎn),然后通過將父類實例作為子類原型,實現(xiàn)函數(shù)復(fù)用
function Cat(name){ Animal.call(this); this.name = name || "Tom"; } Cat.prototype = new Animal(); // 組合繼承也是需要修復(fù)構(gòu)造函數(shù)指向的。 Cat.prototype.constructor = Cat; // Test Code var cat = new Cat(); console.log(cat.name); console.log(cat.sleep()); console.log(cat instanceof Animal); // true console.log(cat instanceof Cat); // true
特點(diǎn):
彌補(bǔ)了方式2的缺陷,可以繼承實例屬性/方法,也可以繼承原型屬性/方法
既是子類的實例,也是父類的實例
不存在引用屬性共享問題
可傳參
函數(shù)可復(fù)用
缺點(diǎn):
調(diào)用了兩次父類構(gòu)造函數(shù),生成了兩份實例(子類實例將子類原型上的那份屏蔽了)
推薦指數(shù):★★★★(僅僅多消耗了一點(diǎn)內(nèi)存)
6、寄生組合繼承
核心:通過寄生方式,砍掉父類的實例屬性,這樣,在調(diào)用兩次父類的構(gòu)造的時候,就不會初始化兩次實例方法/屬性,避免的組合繼承的缺點(diǎn)
function Cat(name){ Animal.call(this); this.name = name || "Tom"; } (function(){ // 創(chuàng)建一個沒有實例方法的類 var Super = function(){}; Super.prototype = Animal.prototype; //將實例作為子類的原型 Cat.prototype = new Super(); })(); // Test Code var cat = new Cat(); console.log(cat.name); console.log(cat.sleep()); console.log(cat instanceof Animal); // true console.log(cat instanceof Cat); //true 該實現(xiàn)沒有修復(fù)constructor。 Cat.prototype.constructor = Cat; // 需要修復(fù)下構(gòu)造函數(shù)
特點(diǎn):
堪稱完美
缺點(diǎn):
實現(xiàn)較為復(fù)雜
推薦指數(shù):★★★★(實現(xiàn)復(fù)雜,扣掉一顆星)
附錄代碼:示例一:
function Animal (name) { // 屬性 this.name = name || "Animal"; // 實例方法 this.sleep = function(){ console.log(this.name + "正在睡覺!"); } //實例引用屬性 this.features = []; } function Cat(name){ } Cat.prototype = new Animal(); var tom = new Cat("Tom"); var kissy = new Cat("Kissy"); console.log(tom.name); // "Animal" console.log(kissy.name); // "Animal" console.log(tom.features); // [] console.log(kissy.features); // [] tom.name = "Tom-New Name"; tom.features.push("eat"); //針對父類實例值類型成員的更改,不影響 console.log(tom.name); // "Tom-New Name" console.log(kissy.name); // "Animal" //針對父類實例引用類型成員的更改,會通過影響其他子類實例 console.log(tom.features); // ["eat"] console.log(kissy.features); // ["eat"]
原因分析:
關(guān)鍵點(diǎn):屬性查找過程
執(zhí)行tom.features.push,首先找tom對象的實例屬性(找不到),
那么去原型對象中找,也就是Animal的實例。發(fā)現(xiàn)有,那么就直接在這個對象的
features屬性中插入值。
在console.log(kissy.features); 的時候。同上,kissy實例上沒有,那么去原型上找。
剛好原型上有,就直接返回,但是注意,這個原型對象中features屬性值已經(jīng)變化了。
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/107894.html
摘要:可以通過構(gòu)造函數(shù)和原型的方式模擬實現(xiàn)類的功能。原型式繼承與類式繼承類式繼承是在子類型構(gòu)造函數(shù)的內(nèi)部調(diào)用超類型的構(gòu)造函數(shù)。寄生式繼承這種繼承方式是把原型式工廠模式結(jié)合起來,目的是為了封裝創(chuàng)建的過程。 js繼承的概念 js里常用的如下兩種繼承方式: 原型鏈繼承(對象間的繼承) 類式繼承(構(gòu)造函數(shù)間的繼承) 由于js不像java那樣是真正面向?qū)ο蟮恼Z言,js是基于對象的,它沒有類的概念。...
摘要:首先為了模擬類創(chuàng)建對象的功能搞出了構(gòu)造函數(shù)。也就是名字膚色膚色這里是繼承里的自有屬性生命值這里繼承的共有屬性的方法攻擊力兵種美國大兵攻擊防御死亡膚色 JS面向?qū)ο笾?【繼承】 我們已經(jīng)準(zhǔn)備了很多前置知識,包括 原型鏈,對象和對象之間的關(guān)系 this,對象和函數(shù)之間的關(guān)系 new, 用函數(shù)批量創(chuàng)建特定的對象的語法糖 JS面向?qū)ο蟮那笆澜裆?我們說,面向?qū)ο笫且环N寫代碼的套路。因為如...
摘要:對象創(chuàng)建的三種方式字面量創(chuàng)建方式系統(tǒng)內(nèi)置構(gòu)造函數(shù)方式自定義構(gòu)造函數(shù)構(gòu)造函數(shù)原型實例之間的關(guān)系實例是由構(gòu)造函數(shù)實例化創(chuàng)建的,每個函數(shù)在被創(chuàng)建的時候,都會默認(rèn)有一個對象。 JS 對象創(chuàng)建的三種方式 //字面量創(chuàng)建方式 var person= { name:jack?。? //系統(tǒng)內(nèi)置構(gòu)造函數(shù)方式 var person= new Object(); person.name = jack; ...
閱讀 2916·2021-11-24 09:39
閱讀 1174·2021-11-02 14:38
閱讀 4169·2021-09-10 11:26
閱讀 2759·2021-08-25 09:40
閱讀 2318·2019-08-30 15:54
閱讀 488·2019-08-30 10:56
閱讀 2756·2019-08-26 12:14
閱讀 3226·2019-08-26 12:13