<span id="mktg5"></span>

<i id="mktg5"><meter id="mktg5"></meter></i>

        <label id="mktg5"><meter id="mktg5"></meter></label>
        最新文章專題視頻專題問答1問答10問答100問答1000問答2000關鍵字專題1關鍵字專題50關鍵字專題500關鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關鍵字專題關鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
        問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
        當前位置: 首頁 - 科技 - 知識百科 - 正文

        全面分析JavaScript 繼承

        來源:懂視網 責編:小采 時間:2020-11-27 21:55:48
        文檔

        全面分析JavaScript 繼承

        全面分析JavaScript 繼承:ES6之前,JavaScript并沒有繼承這一現有的機制。 ES5的繼承方式 類式繼承 //聲明父類 function Father(){ this.fatherVal = 'father'; } //為父類添加共有方法 Father.prototype.getFatherValue = function(){
        推薦度:
        導讀全面分析JavaScript 繼承:ES6之前,JavaScript并沒有繼承這一現有的機制。 ES5的繼承方式 類式繼承 //聲明父類 function Father(){ this.fatherVal = 'father'; } //為父類添加共有方法 Father.prototype.getFatherValue = function(){

        ES6之前,JavaScript并沒有繼承這一現有的機制。

        ES5的繼承方式

        類式繼承

        //聲明父類
        function Father(){
        this.fatherVal = 'father';
        }
        //為父類添加共有方法
        Father.prototype.getFatherValue = function(){
        return this.fatherVal;
        }
        //聲明子類 
        function Child(){
        this.childVal = 'child';
        }
        //繼承父類
        Child.prototype = new Father();
        //為子類添加共有方法
        Child.prototype.getChildValue = function(){
        return this.childVal;
        }
        
        
        

        子類的prototype被賦予父類的實例,新創(chuàng)建的對象復制了父類的構造函數內的屬性和方法并且將原型_proto_指向了父類的原型對象,這樣就擁有了父類的原型對象上的屬性和方法與父類構造函數中復制的屬性和方法。

        var instance = new Child();
        console.log(instance.getFatherValue()); //father
        console.log(instance.getChildValue()); //child
        console.log(instance instanceof Child); //true
        console.log(instance instanceof Father); //true
        console.log(instance instanceof Object); //true
        console.log(Child instanceof Father); //false
        console.log(Child.prototype instanceof Father); //true
        
        
        

        缺點:

        1.子類實例共用父類的公有引用屬性。

        2.無法對父類構造函數內的屬性進行傳參初始化。

        function Father(){
        this.companies =['bigo','yy','uc']
        }
        funtion Child(){}
        Child.prototype = new Father();
        var instanceA = new Child();
        var instanceB = new Child();
        console.log(instanceB.companies); //['bigo','yy','uc']
        instanceA.companies.push('nemo');
        console.log(instanceB.companies); //['bigo','yy','uc','nemo']

        構造函數繼承

        //聲明父類
        function Father(val){
        this.companies =['bigo','yy','uc']
        this.val = val;
        }
        //聲明父類原型方法
        Father.prototype.getCom = function(){
        console.log(this.companies);
        }
        //聲明子類
        function Child(val){
        //繼承
        Father.call(this,val);
        }
        var instanceA = new Child('childA');
        var instanceB = new Child('childB');
        instanceA.companies.push('nemo');
        console.log(instanceA.companies); //['bigo','yy','uc','nemo']
        console.log(instanceA.val); //childA
        console.log(instanceB.companies); //['bigo','yy','uc']
        console.log(instanceB.val); //childB
        

        對Child調用call,將子類中的變量在父類中執(zhí)行一遍,然后父類給this綁定,所以子類繼承了父類的公有屬性。

        缺點:

        由于這種類型的繼承沒有設計原型prototype,所以父類的原型方法不會被子類繼承,而如果想被子類繼承就必須放在構造函數中,這樣創(chuàng)建出來的每個實例都會單獨擁有一份而不能共用。

        組合繼承

        //聲明父類
        function Father(val){
        this.companies =['bigo','yy','uc']
        this.val = val;
        }
        //聲明父類原型方法
        Father.prototype.getValue = function(){
        console.log(this.val);
        }
        //聲明子類
        function Child(val,newVal){
        //構造函數式繼承
        Father.call(this,val);
        this.newVal = newVal;
        }
        //類式繼承
        Child.prototype = new Father();
        //聲明子類原型方法
        Child.prototype.getNewValue = function(){
        console.log(this.newVal);
        }
        var instanceA = new Child("fatherA","childA");
        instanceA.companies.push('nemo');
        console.log(instanceA.companies); //['bigo','yy','uc','nemo']
        instanceA.getValue(); //fatherA
        instanceA.getNewValue(); //childA
        var instanceB = new Child("fatherB","childB");
        console.log(instanceA.companies); //['bigo','yy','uc']
        instanceB.getValue(); //fatherB
        instanceB.getNewValue(); //childB
        
        
        

        缺點:

        在使用構造函數繼承使用執(zhí)行了一遍父類的構造函數,在實現子類原型的類式繼承再調用了一遍父類的構造函數,父類構造函數被調用了兩次。

        原型式繼承

        function inheritObject(obj){
        function F(){};
        F.prototype = obj;
        return new F();
        }
        var situation = {
        companies:['bigo','yy','uc'];
        area:'guangzhou';
        }
        var situationA = inheritObject(situation);
        situationA.area = 'shenzhen';
        situationA.companies.push('tencent');
        var situationB = inheritObject(situation);
        situationB.area = 'beijing';
        situationB.companies.push('baidu');
        console.log(situationA.area); //shenzhen
        console.log(situationA.companies); //['bigo','yy','uc','tencent','baidu']
        console.log(situationB.area); //beijing
        console.log(situationB.companies); //['bigo','yy','uc','tencent','baidu']
        console.log(situation.area); //guangzhou
        console.log(situation.companies); //['bigo','yy','uc','tencent','baidu']
        
        
        

        是類式繼承的一個封裝,其中的過渡對象就相當于類式繼承的子類,然后返回新的實例化對象。

        缺點:

        跟類式繼承一樣,父類的公有引用屬性被共有。

        寄生式繼承

        function inheritObject(obj){
        function F(){};
        F.prototype = obj;
        return new F();
        }
        var situation = {
        companies:['bigo','yy','uc'];
        area:'guangzhou';
        }
        function createSituation(obj){
        //通過原型繼承創(chuàng)建新對象
        var newObj = new inheritObject(obj);
        //定義新對象方法
        newObj.getArea = function(){
        console.log(newObj.area)
        }
        //返回對象
        return obj;
        }
        
        
        

        只是在原型式繼承的基礎上添加了新屬性和方法,還是跟原型式繼承一樣的缺點。

        寄生式組合繼承

        function inheritObject(obj){
        function F(){};
        F.prototype = obj;
        return new F();
        }
        //傳遞參數 child,parent 子類父類
        function inheritPrototype(child,parent){
        //復制一份父類的原型副本保存在變量中;
        var fatherProto = inheritObject(father.prototype);
        //修正因為重寫子類原型導致子類的constructor屬性被修改;
        fatherProto.constructor = child;
        //設置子類的原型
        child.prototype = fatherProto;
        }
        //聲明父類
        function Father(val){
        this.companies =['bigo','yy','uc']
        this.val = val;
        }
        //聲明父類原型方法
        Father.prototype.getValue = function(){
        console.log(this.val);
        }
        //聲明子類
        function Child(val,newVal){
        //構造函數式繼承
        Father.call(this,val);
        this.newVal = newVal;
        }
        //類式繼承
        Child.prototype = new Father();
        inheritPrototype(Child,Father);
        //聲明子類原型方法
        Child.prototype.getNewValue = function(){
        console.log(this.newVal);
        }
        
        
        

        1.在構造函數繼承中我們已經調用了父類的構造函數,還差一個原型的副本

        2.通過原型繼承得到副本,但是這時候fatherProto的constructor需要指向子類。

        3.最后將副本fatherProto賦給子類的原型prototype。

        總的來說,就是既要構造函數,又要原型繼承,但是又避免了組合繼承的兩次調用父類構造函數的問題,最大的改變式對子類原型賦予的式父類原型的一個引用。

        var instanceA = new Child("fatherA","childA");
        instanceA.companies.push('nemo');
        console.log(instanceA.companies); //['bigo','yy','uc','nemo']
        instanceA.getValue(); //fatherA
        instanceA.getNewValue(); //childA
        var instanceB = new Child("fatherB","childB");
        console.log(instanceA.companies); //['bigo','yy','uc']
        instanceB.getValue(); //fatherB
        instanceB.getNewValue(); //childB
        
        

        注意點:

        此時子類如果需要添加原型方法,必須通過prototype點語法一個個添加,否則會覆蓋掉繼承父類的原型對象。
        ES6 新增了Class語法,Class 可以通過extends關鍵字實現繼承,這比 ES5 的通過修改原型鏈實現繼承,要清晰和方便很多。

        Class 繼承

        class Parent {
        constructor(value) {
        this.val = value
        }
        getValue() {
        console.log(this.val)
        }
        }
        class Child extends Parent {
        constructor(value) {
        super(value)
        }
        }
        let child = new Child(1)
        child.getValue() // 1
        child instanceof Parent // true
        
        

        class 實現繼承的核心在于使用 extends 表明繼承自哪個父類,并且在子類構造函數中必須調用 super,因為這段代碼可以看成 Parent.call(this, value)。

        如果子類沒有定義constructor方法,這個方法會被默認添加。

        聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

        文檔

        全面分析JavaScript 繼承

        全面分析JavaScript 繼承:ES6之前,JavaScript并沒有繼承這一現有的機制。 ES5的繼承方式 類式繼承 //聲明父類 function Father(){ this.fatherVal = 'father'; } //為父類添加共有方法 Father.prototype.getFatherValue = function(){
        推薦度:
        標簽: js 全面 解析
        • 熱門焦點

        最新推薦

        猜你喜歡

        熱門推薦

        專題
        Top
        主站蜘蛛池模板: 91在线亚洲精品专区| 亚洲国产精品毛片av不卡在线 | 一级**爱片免费视频| 成年丰满熟妇午夜免费视频| 亚洲综合国产精品| 一级毛片在线观看免费| 亚洲综合在线视频| 99热这里只有精品免费播放| 亚洲国产精久久久久久久| 久久久免费的精品| 久久精品国产99精品国产亚洲性色| 中文字幕无码一区二区免费| 亚洲国产高清人在线| 免费观看激色视频网站bd| 亚洲美女大bbbbbbbbb| 曰曰鲁夜夜免费播放视频| 亚洲AV无码久久久久网站蜜桃| 日本精品人妻无码免费大全| 亚洲高清毛片一区二区| 亚洲av区一区二区三| 黄色三级三级免费看| 红杏亚洲影院一区二区三区| 全免费a级毛片免费看| 亚洲国产美女精品久久| 精品少妇人妻AV免费久久洗澡 | 亚洲性无码AV中文字幕| 国产精品免费视频播放器| 性生大片视频免费观看一级| 亚洲va在线va天堂va888www| 国产卡二卡三卡四卡免费网址 | 一区二区三区在线免费观看视频| 亚洲人精品午夜射精日韩 | 国产成人无码a区在线观看视频免费| 美女露100%胸无遮挡免费观看| 亚洲精品无码精品mV在线观看| 精品无码人妻一区二区免费蜜桃| 亚洲日韩国产一区二区三区在线| 亚洲国产一成久久精品国产成人综合| 日本视频在线观看永久免费| 在线亚洲高清揄拍自拍一品区| 国产成人精品曰本亚洲79ren|