继承接口

public interface A {
}
public interface C {
}
public interface B extends A,C{
}

结论:class只支持单根继承,interface可以继承多个接口。

你可能感兴趣的:(Java基础,继承接口)