js中,类的继承
2021-06-10 04:03
标签:str name bsp nbsp 学生 类的继承 cto end xtend 创建类: js中,类的继承 标签:str name bsp nbsp 学生 类的继承 cto end xtend 原文地址:http://www.cnblogs.com/baichuan147258/p/7296370.html
class student{
constructor(name,age){
this.name=name;
this.age=age;
}
learn(){
console.log(‘我是学生‘);
}
}
类的继承:
class child extends Student{
constructor(name,age){
super (name,age);
}
coolings(){
console.log(‘cooling‘);
}
}
上一篇:js的数据分类
下一篇:Hibernate一对多操作