Exception in thread "main" java.lang.Error: Unresolved compilation problem:
The return type is incompatible with TrafficTool.legCount()
at com.imooc.traffic.Ship.legCount(Ship.java:10)
at com.imooc.Demo04.main(Demo04.java:16)
@jerryqueue 说的不对
The return type is incompatible with TrafficTool.legCount()
at com.imooc.traffic.Ship.legCount(Ship.java:10)
at com.imooc.Demo04.main(Demo04.java:16)
@jerryqueue 说的不对
2017-05-29
接口可以继承接口
public interface InterfaceSub extends InterfaceA, interfaceB { }
public interface InterfaceSub extends InterfaceA, interfaceB { }
2017-05-29