24.javascript 类

2022/1/6 22:34:03

本文主要是介绍24.javascript 类,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

类的创建方法:记得一点要用constructor

class ClassName {
  constructor() { ... }
}

  实例

class Car {
  constructor(name, year) {
    this.name = name;
    this.year = year;
  }
}

  多个方法:

class ClassName {
  constructor() { ... }
  method_1() { ... }
  method_2() { ... }
  method_3() { ... }
}

  实例:

class Car {
  constructor(name, year) {
    this.name = name;
    this.year = year;
  }
  age() {
    let date = new Date();
    return date.getFullYear() - this.year;
  }
}

let myCar = new Car("Ford", 2022);
document.getElementById("demo").innerHTML = "My car is " + myCar.age() + " years old.";

  



这篇关于24.javascript 类的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程