java 接口路径扩展了多个 class,bug?
java interface Path extends more than one class, bug?
刚发现接口Path扩展了3class,违反了原则;
public interface Path
extends Comparable<Path>, Iterable<Path>, Watchable
????
extends
关键字与接口一起使用,使它们扩展其他接口(即不扩展多个 类)。
Path
的extends
关键字后的所有类型都是接口(Comparable
、Iterable
、Watchable
)。
刚发现接口Path扩展了3class,违反了原则;
public interface Path
extends Comparable<Path>, Iterable<Path>, Watchable
????
extends
关键字与接口一起使用,使它们扩展其他接口(即不扩展多个 类)。
Path
的extends
关键字后的所有类型都是接口(Comparable
、Iterable
、Watchable
)。