我对此代码编译感到惊讶,但这是什么意思?
public interface IBar {}
public interface IFoo implements IBar {}
答案 0 :(得分:4)
无法编译,因为界面不能implement
其他界面,但可以extends
:
public interface IFoo extends IBar {}
您的代码必须导致错误:
1084: Syntax error: expecting leftbrace before implements.