ES5、ES6类的定义

ES5定义类

1、类名首字母一般都是大写

2、可以当成普通函数调用,但一般都通过new关键字调用,通过关键字调用会生成一个新的对象

3、通过new关键字创建的对象,给当前的this绑定成新创建的对象

4、给当前类定义一个方法,通常绑定在原型上

javascript 复制代码
    <script>
      function Person(name, age) {
        this.name = name;
        this.age = age;
      }
      Person.prototype.running = function () {
        console.log(this.age, this.name, "running");
      };
      var p = new Person("why", 18);
      console.log(p.name, p.age);
      p.running();
    </script>

ES6定义类

1、想要给类中传值,在ES6里面所有的类都可以实现一个方法 constructor(构造方法)

2、类中定义方法直接写在类里面,与ES5中原型绑定方法效果是一致的

类的定义:

javascript 复制代码
      // ES6定义类
      class Person {
        // 构造方法:在创建类的时候会创建一个方法
        // 通过new关键字创建实例的时候会被执行
        constructor(name, age) {
          this.name = name;
          this.age = age;
        }
        // 定义方法
        running() {
          console.log(this.name, this.age, "running");
        }
      }
      const p = new Person("why", 18);
      p.running();

      // this绑定
      // call 可以主动给一个函数绑定this
      let func = p.running;
      var obj = {
        name: "edit",
        age: 1,
      };
      // func.call(obj);
      func = func.bind(obj);
      func();

类的继承

面向对象有三大特性

1、封装

2、继承

(1)减少重复代码

(2)多态的前提(弱类型语言鸭子类型)

3、多态

javascript 复制代码
    <script>
      class Person {
        constructor(name, age) {
          this.name = name;
          this.age = age;
        }
        running() {
          console.log("running");
        }
      }

      class Student extends Person {
        constructor(name, age, sno) {
          // 构造器中如果有继承需要初始化父类对象,父类中才会有相关东西,才能调用this,  super必须调用
          super(name, age);
          this.sno = sno;
        }
      }
      const stu = new Student("why", 18, 151);
      console.log(stu.age, stu.name, stu.sno);
      stu.running();

      class Student extends Person {
        constructor(name, age, title) {
          super(name, age);
          this.title = title;
        }
      }
    </script>
相关推荐
小帅不太帅2 分钟前
我随手发了几张截图,白拿了一个月 AI 顶配会员
前端·github
36岁的我开始学习打篮球3 分钟前
外规内化技术架构
前端
yxlalm5 分钟前
2.java秒杀项目第二课-后端登录功能
java·开发语言
雪隐20 分钟前
用Flutter做背单词APP-03为了给单词库塞满数据,我让AI给我打了上万份工
前端·人工智能·后端
hunterandroid20 分钟前
Android 安全最佳实践:从数据存储到网络通信的防护思路
前端
H Journey21 分钟前
web开发学习:html、css、js
前端·css·html·js
hunterandroid26 分钟前
Compose 性能优化:从卡顿到丝滑的实战经验
前端
hunterandroid30 分钟前
Kotlin Coroutines 在 Android 项目中的落地实战
前端
不一样的少年_38 分钟前
不用框架,手搓 AI Agent:(一) 先让它跑起来
前端·后端·agent
味悲39 分钟前
浏览器解析机制与XSS的15种编码绕过
前端·xss