码迷,mamicode.com
首页 > Web开发 > 详细

js中,类的继承

时间:2017-08-07 00:27:19      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:str   name   bsp   nbsp   学生   类的继承   cto   end   xtend   

创建类:
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中,类的继承

标签:str   name   bsp   nbsp   学生   类的继承   cto   end   xtend   

原文地址:http://www.cnblogs.com/baichuan147258/p/7296370.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!