我有一个接口和一个抽象类:
interface MyInterface {int presents();};
public abstract class MyAbstractClass implements MyInterface {
abstract void presents();
abstract void chill();
}
编译器抱怨在
abstract void presents();
返回类型不兼容
MyInterface.presents()
提供以下选项:
make it int type
make MyInterface.presents void type
为什么会这样?