2.使用class关键字
class Person{
constructor(x,y){
this.x = x;
this.y = y;
}
}
class Chinese extends Person {
constrctor(){
super() //调用父类的构造函数,且必须在构造函数的第一条语句。
}
注:父类构造器需要什么参数,子类的super就需要传什么参数,否则会出现undefined。
class类
最新推荐文章于 2024-05-27 09:21:15 发布