继承

作者: Hello杨先生 | 来源:发表于2019-06-28 14:00 被阅读1次

原型链直接继承

         function Person() {}
        Person.prototype.foot = 2; 
        Person.prototype.head = 1;
        Person.prototype.name = "老哥";

        function Student(name, no) {
            this.name = name;
            this.no = no;
        }

        function extend (Child ,Parent){//封装
            var  O = function() {} ;  //中间变量
            O.prototype = Parent.prototype ;//继承来自parent的所有东西
            Child.prototype = new  O();//new出来的新对象的所有方法给child
            Child.prototype.constructor = Child ;//把child手动指回来
        }
        extend(Student,Person) ;
        var stu = new Student("老杨", "22");
        alert(stu.name);
        alert(stu.head);

原型链直接继承prototype

       function Person() {}
        Person.prototype.foot = 2; //this 指代Person
        Person.prototype.head = 1;
        Person.prototype.name = "老哥";

        function Student(name, no) {
            this.name = name;
            this.no = no;
        }
        Student.prototype = Person.prototype;
        Student.prototype.constructor = Student;
        var stu = new Student("老杨", "22");
        alert(stu.name);
        alert(stu.head);

原型链继承_prototype属性

function Person() {
            this.foot = 2; //this 指代Person
            this.head = 1;
            this.name = "老哥";
        }

        function Student(name, no) {
            this.name = name;
            this.no = no;
        }

        Student.prototype = new Person();
        //student 也具有了food和head (赋值)
        //添加了新的内容  但是指向未变  未告诉原型
        // var a = 4 ;
        // a = a+1;
        Student.prototype.constructor = Student;
        //告诉原型我加了新的属性

        var stu = new Student("老杨", "22");

        alert(stu.constructor);
        alert(stu.name);
        //若有冲突,加载原函数的的属性

继承_构造函数绑定

 function Person(){
            this.foot = 2 ;
            this.head = 1 ;
            this.favorColor = ["red" , "yellow"] ;
        } 

        function Student(name,no) {
            // Person.call(this) ;
            Person.apply(this) ;
            this.name = name ;
            this.no = no ;
        }

        var stu = new Student ("大师" , "11") ;
        stu.favorColor.push("greed") ;  
        alert(stu.favorColor) ;  //red,yellow,greed

        var stu1 = new Student("老杨" ,"22") ;
        alert(stu1.favorColor) ;  //red,yellow

相关文章

  • 继承 继承

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

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

    将共性的内容放在父类中,子类只需要关注自己特有的内容 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/akbscctx.html