看代码发现接口文件居然继承两个接口,想到一句话,“只能继承一个类,可以实现多个接口”,然后就陷入疑问。经度娘解释:
java类是单继承的。classB Extends classA
java接口可以多继承。Interface3 Extends Interface0, Interface1, interface
补全知识点:java类只能继承(Extends)一个类,可以实现(implements)多个接口,java接口可以继承(Extends)多个接口,不能实现(implements)任何接口
例子:
Interface1:
public interface Interface1 {
public void method1();
}
Interface2:
看到接口之间的关系使用implements关键字时会报错,错误提示信息如下:
Syntax error on token "implements", extends expected
eclipse明确指出,接口之间是继承关系,而非实现关系。
修改为extends时代码正确:
public interface Interface2 extends Interface1{
public int a = 1;
public void method2();
}
代码清单:
//interface3
<pre name="code" class="java">public interface Interface3 {
public void method3();
}
//interface4
<pre name="code" class="java">public interface Interface4 extends Interface1, Interface3 {
public void method4();
}
实现类A:
public class A implements Interface4 {
public static void main(String[] args) {
}
public void method1() {
// TODO Auto-generated method stub
System.out.println("method1");
}
public void method3() {
// TODO Auto-generated method stub
System.out.println("method2");
}
public void method4() {
// TODO Auto-generated method stub
System.out.println("method3");
}
}
Main主类:
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
A a = new A();
a.method1();
a.method3();
a.method4();
}
}
输出结果:
method1
method2
method3
说明java接口的继承是多继承的机制。