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

类与对象

时间:2019-04-18 17:05:37      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:mon   就是   类构造   ext   class   span   函数的参数   方法   col   

1、类继承传递参数 (子类修改父类属性)

class Common {
  constructor (name = ‘song‘) {
    this.name = name
  }
}
class Child extends Common {
  constructor (name = ‘child‘) {
    super(name) //  super的参数列表就是父类构造函数的参数列表 如果是空的 则用父类的默认值 放在第一行super
    this.type = ‘child‘
  }
}
var obj = {
  name: new Child(‘hello‘)
}
export default obj

 

 

class Common {
  constructor (name = ‘song‘) {
    this.name = name
  }
  static tell () { //  静态方法
    console.log(‘tell‘)
  }

  get longName () {
    return ‘mk‘ + this.name
  }
  set longName (value) {
    this.name = value
  }
}
class Child extends Common {
  constructor (name = ‘child‘) {
    super(name) //  super的参数列表就是父类构造函数的参数列表 如果是空的 则用父类的默认值 放在第一行super
    this.type = ‘child‘
  }
}
Common.type = ‘test‘ //  静态属性
var v = new Common()
var obj = {
  name: new Child(‘hello‘),
  longName: v.longName,
  tell: Common.tell
}
export default obj

 

类与对象

标签:mon   就是   类构造   ext   class   span   函数的参数   方法   col   

原文地址:https://www.cnblogs.com/suanmei/p/10730339.html

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