小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

js四大繼承方式

 初出茅廬小菜鳥(niǎo) 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ù)(通過(guò)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();

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

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多