码迷,mamicode.com
首页 > 其他好文 > 详细

es6中对象的类与继承方法

时间:2017-08-18 21:26:16      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:xtend   code   return   extend   name   父类   bsp   ext   如何   

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

代码如下:

 1 //我们假定父类为person,子类为man
 2 class person{
 3     constructor(name,age){
 4         this.name=name;
 5         this.age=age
 6     },
 7     say(){
 8           return console.log(this.name+this.age);
 9     }
10 }
12 class man extends person{
13  constructor(name,age , sexy) {
14  super(name,age); // 调用父类的constructor(name, age)
15  this.sexy = sexy;
16  } 
17  say() {
  super.say();
// 调用父类的say()
18 return console.log(this.name); 19  } 20 }

 

es6中对象的类与继承方法

标签:xtend   code   return   extend   name   父类   bsp   ext   如何   

原文地址:http://www.cnblogs.com/lucio110/p/7390026.html

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