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

es6类声明,class总结

时间:2018-04-04 18:10:33      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:ati   pos   声明   post   new   cto   写法   div   str   

1、class的基本写法

class a{
  // 传入参数或者写入固定参数
  constructor(a,b){
    this.a=a
    this.b=b
  }
  // 可直接调用的计算后的参数
  get c(){
    return this.a+this.b
  }
  // 可以调用的普通的方法
  calc(){
    return this.a*this.b
  }
  // 无需new就可以直接引用的方法
  static mius(d,e){
    return d-e
  }
}
var x=new a()

2、继承class

class l extends a {
  calc(){
    console.log(super.calc())
    return this.a-this.b
  }
}

var w=new l()

 

  

es6类声明,class总结

标签:ati   pos   声明   post   new   cto   写法   div   str   

原文地址:https://www.cnblogs.com/huangqiming/p/8717960.html

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