继承

作者: 魂之挽歌w | 来源:发表于2018-01-11 20:08 被阅读6次

1.构造函数实现继承,具体:在构造函数中,使用apply()和call()方法实现继承

function Person(){

    this.species="human";

    this.eat=function (){

    document.writeln(this.name+"吃饭");

}

}

function Student(school,name,age){

Person.apply(this,arguments);

this.name=name;

this.age=age;

this.school=school;

this.study=function study(){

document.writeln(this.name+"学习");}

}

   var s=new Student();

    s.name="吴海忠";

    s.age=23;

    s.school="zjlg";

    document.writeln(s.school);

    document.writeln(s.species);

      s.study();

       s.eat();

2.prototype实现继承

function Person1(){};

Person1.prototype.species="human";

Person1.prototype.eat=function (){

document.writeln("吃饭");}

function Teacher(name,age){

this.age=age;

this.name=name;

this.teach=function(){

document.writeln(this.name+"教学");

}

}

var nullFunction=function (){};

nullFunction.prototype=Person1.prototype;

Teacher.prototype=new nullFunction();

Teacher.prototype.constructor=Teacher;//这么做之后Student的prototype的constructor也变成了Person的prototype的constructor!

                                      //所以,要将Student的prototype的constructor重新设置为Student

var teacher=new Teacher("whz",44);

document.writeln(teacher.species);

teacher.teach();

teacher.eat();

//注意:用一个中间对象,不能直接把两个prototype相等(Teacher.prototype=Person.prototype),因为这样会导致Person.prototype和Teacher.prototype指向同一个对象,

//这样所有对Teacher.prototype的修改都会映射到person.prototype中,我们要避免发生这样直接的

3.利用class实现继承

在ES6中可以利用Class通过extends关键字实现继承,这比之前的通过修改原型链实现继承的方式要方便得多了。尤其是做Java,Android开发的童鞋看到Class时倍感亲切,但是稍微遗憾的是目前不少浏览器(包括我目前使用的谷歌浏览器)对于ES6的Class兼容得不是很好。不过,也不用担心,我相信过不了多久主流的浏览器都会很好地支持Class


鸭式辨型:

     我们想在printStudentMessage函数中打印Student类型的对象的信息。但是由于JavaScript是弱语言,所以不能确保传递给printStudentMessage( )方法的参数必是Student类型的。为了程序的严谨和避免不必要的麻烦,我们可对传入的参数进行辨识!

function  Student(id,name){ 

           this.id=id;

            this.name=name;

        }

        functionprintStudentMessage(s){      

      if(typeof s=="object" && typeof s.id=="number"){

                document.writeln("id="+s.id+",name="+s.name);

            }else{

                document.writeln("传入参数不是Student");

            }

        }

        var stu=new Student(9527,"周星星");

        printStudentMessage(stu);

相关文章

  • 继承 继承

    属性拷贝 继承不单单能通过原型链实现,也能通过其他方式实现,属性拷贝就是其中一种方法。 通过属性拷贝也能实现继承子...

  • 继承(单继承,多继承)

    将共性的内容放在父类中,子类只需要关注自己特有的内容 python中所有的内容都是对象,所有的对象都直接或间接继承...

  • js继承方式

    类式继承 构造函数继承 组合继承 类式继承 + 构造函数继承 原型式继承 寄生式继承 寄生组合式继承 寄生式继承 ...

  • Python-学习之路-08 OOP -02

    单继承和多继承 单继承:每个类只能继承一个类 多继承:每个类可以继承多个类 单继承的多继承的优缺点 菱形继承/钻石...

  • 原型相关(二)

    1.继承 继承方式:接口继承(只继承方法签名)实现继承(继承实际的方法)ECMAScript只支持实现继承,并且主...

  • 继承

    继承的引入和概述 继承案例和继承的好处 继承的弊端 Java中继承的特点 继承的注意实现和什么时候使用继承 继承中...

  • Java面向对象三大特性之继承

    继承 一、继承的特点 Java只支持单继承单继承 多继承 单继承、多继承优缺点①单继承优点:提高了代码的复用性,让...

  • 7、面向对象的程序设计3(《JS高级》笔记)

    三、继承 许多OO语言都支持两种继承方式:接口继承和实现继承。接口继承只继承方法签名,而实现继承则继承实际方法。由...

  • 【重学前端】JavaScript中的继承

    JavaScript中继承主要分为六种:类式继承(原型链继承)、构造函数继承、组合继承、原型式继承、寄生式继承、寄...

  • js之继承

    文章主讲 JS 继承,包括原型链继承、构造函数继承、组合继承、寄生组合继承、原型式继承、 ES6 继承,以及 多继...

网友评论

      本文标题:继承

      本文链接:https://www.haomeiwen.com/subject/gmrtoxtx.html