class Super{
private void method(){}
}
class Sub extends Super{
//1
}
在//1 处,能编译通过的代码为:
A. public int method(){return 0;}
B. void method(){}
C. void method(int n){}
D. private void method(){}
选择正确答案
A. 程序编译不通过
B. 编译通过,输出foo() in Super
C. 编译通过,输出foo() in Sub
这道题没看你明白是什么意思。
|
|