为了账号安全,请及时绑定邮箱和手机立即绑定

new this(...args)什么意思啊?

new this(...args)什么意思啊?

绝地无双 2018-12-19 18:18:38
下面代码什么意思啊class  A{  static instance(...args) {        this.i = this.i || new this(...args)        return this.i    }}this.i = this.i || new this(...args)完全看不懂啊,这里this.i是个什么鬼new this(...args)又是什么?
查看完整描述

1 回答

?
繁星coding

TA贡献1797条经验 获得超4个赞

短路。等同於:


class A{

  static instance(...args) {

        if (this.i) this.i = this.i;

        else this.i = new this(...args);


        return this.i;

    }

}

new this(...args) is equal to new A(...args).


查看完整回答
反对 回复 2019-01-10
  • 1 回答
  • 0 关注
  • 767 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信