给定
public interface Subinterface extends Superinterface
{
...
}
和
public class Implementor implements Subinterface
{
......
}
所以我的问题是,
Implementor
是否必须定义的所有功能Superperinterface
除了它的Subinterface
功能必须定义?
最佳答案
是的,除非Implementor
是abstract
。