为什么实现接口的类必须静态调用其默认的super方法?

时间:2019-06-28 16:41:50

标签: java interface

如果我有这样的界面:

interface U {
  default void execute() {
    ...
  }
}

和实现它的类:

class V implements U {
  @override
  void execute() {
    ...
  }
}

为什么类V的{​​{1}}要求execute的{​​{1}}作为U而不是execute来调用?

0 个答案:

没有答案