Why does the super() not showing error though not given in first line?

前端 未结 3 644
栀梦
栀梦 2021-01-29 15:14

Why does the super keyword not showing error though not given in first line

3条回答
  •  一个人的身影
    2021-01-29 15:42

    super(args...) is required for the constructor's at first line.

    super.property can be used anywhere in the code

提交回复
热议问题