日韩黑丝制服一区视频播放|日韩欧美人妻丝袜视频在线观看|九九影院一级蜜桃|亚洲中文在线导航|青草草视频在线观看|婷婷五月色伊人网站|日本一区二区在线|国产AV一二三四区毛片|正在播放久草视频|亚洲色图精品一区

分享

js四大繼承方式

 初出茅廬小菜鳥 2019-08-06

1、繼承方式一:原型鏈

Grand.prototype.lastName = 'kj';

     function Grand(){

         this.wife = 'xh';

     }

    Father.prototype= new Grand();

     function Father(){

         this.name = 'gx';

     }

     Son.prototype= new Father();

     function Son(){

        this.name = 'lk';

     }

     var son = new Son();

2、繼承方式二: 構(gòu)造函數(shù)(通過call())

function Person(name,age){

         this.name = name;

         this.age = age;

     }

     function Student(name,age,grade){

        Person.call(this,name,age);

         this.grade = grade;

     }

     function Miny(name,age,grade,sex){

         Student.call(this,name,age,grade);

         this.sex = sex;

     }

     var mingy = new Miny('wang',16,17,'nan');

     function A(){

         this.m1='aaa';

     }

     function B(){

         A.call(this);

     }

     var w=new B();

3、第三種方式:共享原型

Father.prototype.age = 30;

     function Father(){

     }

     function Son(){

     }

     Son.prototype = Father.prototype;

     var son = new Son();

     var father = new Father();

4、第四種方式:圣杯模式

person.prototype.name = 'huluwa';

function person(){

}

function student(){

}

//媒介

function inherit(person,student){

function f(){}

f.prototype =  person.prototype;

student.prototype = new f();

student.prototype.constructor = student;

student.prototype.super = person.prototype;

}

inherit(person,student)

var student = new student();

//繼承

person.prototype = {

name : 'huluwa';

age : 17;

}

function person(){

}

student.prototype = new person();

function student(){}

var stu = new student();

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多