js的继承的方式

1.对象冒充继承

使用 bind,call,apply 解决构造函数属性的继承

缺点:不能继承原型上的属性和方法

js 复制代码
  //-------------父类-------------

        function Person(name, age, sex) {
            this.name = name;
            this.age = age;
            this.sex = sex;
        }

        Person.prototype.run = function () {
            console.log(`我${this.name},爱跑步!`);
        }
        
        //-------------子类-------------
        function Student(sNo, name, age, sex) {
            //对象的冒充
            // bind,call,apply
            Person.call(this, name, age, sex);
            //后面
            this.sNo = sNo;
        }

        var s1 = new Student(10001, "刘德华", 20, "男");
        console.log(s1);
        s1.run()

2.原型链继承

缺点:不能让构造函数的属性,初始化

js 复制代码
   //-------------父类-------------
      function Person(name, age) {
        this.name = name;
        this.age = age;
      }
      Person.prototype.name = "刘德海";
      Person.prototype.run = function () {
        alert(123);
      }

      //-------------子类-------------
      function Student() {
      }
      //我只实现了原型继承,构造函数内部的属性,是无法设置初始值
      Student.prototype = new Person();
      var s2 = new Student();
      console.log(s2);
      // s2.run()
      console.log(s2.address);

3.组合继承(对象冒充+原型链继承)

缺点:原型中会有多余的属性,并且是undefined

js 复制代码
   //-------------父类-------------
      function Person(name, age) {
        this.name = name;
        this.age = age;
      }
      Person.prototype.name = "刘德海";
      Person.prototype.run = function () {
        alert(123);
      }

      //-------------子类-------------
      function Student() {
      }
      //我只实现了原型继承,构造函数内部的属性,是无法设置初始值
      Student.prototype = new Person();
      var s2 = new Student();
      console.log(s2);
      // s2.run()
      console.log(s2.address);

4.寄生组合继承

寄生继承+对象冒充继承=寄生组合继承

寄生组合继承 Object.create(base.prototype);

js 复制代码
   // 寄生继承,解决原型问题
        // 寄生继承+对象冒充继承=寄生组合继承
        function inherit_proto(base, child) {
            // 1.创建父类原型,根据父类的原型,创建一个新的对象
            var basePrototype = Object.create(base.prototype);
            // 2.创建的原型对象,它的构造还是指向原来的构造函数
            // 我们就修改子类的构造器
            basePrototype.constructor = child
            // 3.让自己拥有父类的原型
            child.prototype = basePrototype
            console.log(basePrototype);
        }
        // 父类
        function Person(name, age, sex) {
            this.name = name
            this.age = age
            this.sex = sex
        }
        Person.prototype.sayHi = function () { }

        // 子类
        function Student(sNo, name, age, sex) {
            Person.call(this, name, age, sex)
            this.sNo = sNo
        }
        // 调用方法
        inherit_proto(Person, Student)
        var stu = new Student("1001", "小易", 22, "女")
        console.log(stu);

5.ES6的类+extends继承

js 复制代码
  class Person {
            constructor(name, age) {
                this.name = name
                this.age = age
            }
            run(){
                return  `跑步`
            }
        }
        class Student extends Person {
            constructor(name, age, sex) {
                super(name, age)
                this.sex = sex
            }
            // 重写:子类重写父类的方法
            run(){
                return  `哈哈哈哈哈哈或`
            }
        }
        var p=new Student("小易",22,"女")
        console.log(p.run());
        console.log(p);
相关推荐
小华同学ai1 分钟前
Github 2.3k star 太牛x,京东(JoyAgent‑JDGenie)这个开源项目来得太及时啦,端到端多智能体神器!!!
前端·后端·github
Face1 分钟前
Node.js全栈基石(壹)
前端·node.js
Code_Dragon3 分钟前
最近遇到的bug
linux·前端
言兴3 分钟前
从输入 URL 到页面显示:深入理解浏览器缓存机制
前端·javascript·面试
讨厌吃蛋黄酥3 分钟前
前端跨域难题终结者:从JSONP到CORS,一文搞定所有跨域问题!
前端·javascript·后端
阿星做前端4 分钟前
coze源码解读:项目启动
前端·javascript
言兴5 分钟前
面试题之解析“类组件”与“组件”的本质
前端·javascript·面试
Jessica07065 分钟前
【Vue3+Element Plus】修改el-table树形结构的默认箭头样式
前端
excel6 分钟前
前端布局避坑指南:Grid、Flex 与传统 CSS2 布局的优缺点全解析
前端
潘小安8 分钟前
『译』2025 年 MCP 工具终极指南:6 款颠覆性 AI 开发工具,让你的生产力提升 10 倍
前端·ai编程·mcp