例子:
abstract class B {
void number(){};
void first(){
System.out.println("abstact中可以定义有方法体的方法");
}
}
interface B {
void number();
void first(){ //这样就会出错
System.out.println("abstact中可以定义有方法体的方法");
}
}
interface B {
void number();
void first();
}
即在接口中的方法不能有方法体,可以说是纯抽象的方法,{}也不能有的
|
|