将下列(A,B,C,D)哪个代码替换下列程序中的【代码】不会导致编译错误。(
)
A: public
int f(){return 100+M;}
B: int
f(){return 100;}
C: public
double f(){return 2.6;}。
D: public
abstract int f();
interface Com {
int M = 200;
int f();}
class ImpCom implements Com {
【代码】}
)
A: public
int f(){return 100+M;}
B: int
f(){return 100;}
C: public
double f(){return 2.6;}。
D: public
abstract int f();
interface Com {
int M = 200;
int f();}
class ImpCom implements Com {
【代码】}
举一反三
- 下列选项中,( )代码替换源文件Com.java中的【代码】不会导致编译错误。public interface com{int M=200;int f();}class ImpCom implements Com{【代码】} A: public int f( ){return 100+M;} B: int f( ){return 100;} C: public double f( ){return 2.6;} D: public abstract int f( );
- 将下列(A,B,C,D)哪个代码替换下列程序中的【代码】不会导致编译错误。 A.public int f(){return 100+M;} B.int f(){return 100;} C.public double f(){return 2.6;}。 D.public abstract int f(); interface Com { int M = 200; int f(); } class ImpCom implements Com { 【代码】 }
- 程序填空:interface Com{ int M=200; int f(); } class ImpCom implements Com{ ___________________________; } A: public int f(){retrun 100+M;} B: int f() {return 100;} C: public double f(){return 2.6;} D: public abstract inf f();
- 下列ABCD注释标注的哪行代码有错误?[br][/br] [br][/br]public interface Com {[br][/br] abstract void cry____; //【A】[br][/br] public int x = 0; //【B】 [br][/br] static int y = 0; //【C】[br][/br]}[br][/br]abstract class Cat implements Com {[br][/br] abstract void cry____; //【D】[br][/br]}
- 对于下列Com接口(Com.java)类,哪个叙述是正确的?[br][/br]interface Com {[br][/br] int MAX = 100;[br][/br] int f____;[br][/br]}[br][/br] [br][/br] A. Com是一个public接口。[br][/br] [br][/br] B. 编译器认为int MAX = 100;就是 public static final int MAX = 100;[br][/br] [br][/br] C. 编译器认为int f____;就是abstract int f____;[br][/br] [br][/br] D. 编译器认为int MAX = 100;就是 public final int MAX = 100;