public abstract class MyClass {
public int constInt = 5;
//add code here
public void method() {
}
}
A.public abstract void method(int a);
B.constInt = constInt + 5;
C.public int method();
D.public abstract void anotherMethod() {}
A.对
B是一条语句
C中返回值不能作为重载的依据
D抽象类中的方法没有函数体 |
|