es6中对象的类与继承方法

时间:2024-12-26 23:06:56

对于对象,我一直搞不清楚到底是该如何去继承,如何去书写。在熟练es6之后,终于会尝试写出来了。

代码如下:

 //我们假定父类为person,子类为man
class person{
constructor(name,age){
this.name=name;
this.age=age
},
say(){
return console.log(this.name+this.age);
}
}
class man extends person{
constructor(name,age , sexy) {
super(name,age); // 调用父类的constructor(name, age)
this.sexy = sexy;
}
say() {
  super.say();// 调用父类的say()
 return console.log(this.name);
}
}