下列选项中,( )代码替换源文件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: 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(){retrun 100+M;} B: int f() {return 100;} C: public double f(){return 2.6;} D: public abstract inf f();
- 将下列(A,B,C,D)哪个代码替换下列程序中的【代码】不会导致编译错误。(<br/>) A: public<br/>int f(){return 100+M;} B: int<br/>f(){return 100;} C: public<br/>double f(){return 2.6;}。 D: public<br/>abstract int f();<br/>interface Com {<br/>int M = 200;<br/>int f();}<br/>class ImpCom implements Com {<br/>【代码】}
- 将下列(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=100; int on();}class A implements Com{ public int on(){ return Com.M; }}public class E{ public static void main(String args[]){ Com com=new A(); int m=com.on(); System.out.println(m); }}
- 对于下列Com接口(Com.java)类,哪个叙述是正确的? interface Com {int MAX = 100;int f(); } A: Com是一个public接口。 B: 编译器认为int MAX = 100;就是 public static final int MAX = 100; C: 编译器认为int f();就是abstract int f(); D: 编译器认为int MAX = 100;就是 public final int MAX = 100;