1、抽象类和接口有什么不同?
1)类可以实现无限个接口,但仅能从一个抽象(或任何其他类型)类继承。
2)抽象类当中可以存在非抽象的方法,可接口不能且它里面的方法只是一个声名必须用 public来修饰没有具体实现的方法。
3)抽象类中的成员变量可以被不同的修饰符来修饰,可接口中的成员变量默认的都是静态常量(static final)。
public abstract class A {
public static int i=1; //√
public final int j=2; //√
public static final int s=4; //√
private int m; //√
protected int n; //√
}
public interface A {
public static int i=1; //√
public final int j=2; //√
public static final int s=4; //√
private int m; //× //Illegal modifier for the interface field A.m; only public, static & final are permitted
protected int n; //× //Illegal modifier for the interface field A.m; only public, static & final are permitted
}
4)这一点也是最重要的一点本质的一点"抽象类是对象的抽象,然接口是一种行为规范"。
5)用法上的区别:当父类已有实际功能的方法时,该方法在子类中可以不必实现,直接引用的方法,子类也可以重写该父类的方法(继承的概念)。
而实现 (implement)一个接口(interface)的时候,是一定要实现接口中所定义的所有方法,而不可遗漏任何一个。
07-19
420