现有如下代码:请问以下哪个语句放置在注释的空白处会引起编译错误?()
A: publicfloatgetNum(){return4.0f;}
B: publicvoidgetNum(){}
C: publicvoidgetNum(doubled){}
D: publicdoublegetNum(floatd){return4.0;}
A: publicfloatgetNum(){return4.0f;}
B: publicvoidgetNum(){}
C: publicvoidgetNum(doubled){}
D: publicdoublegetNum(floatd){return4.0;}
举一反三
- 给出以下代码,请问以下哪些语句放置在第六行会引起编译错误?( )1.class Super{2.public float getNum(){return 3.0f;}3.}4.5.public class Sub extends Super{6.7}请选择一个正确答案。 A: (1)public float getNum() {return 4.0f;} B: (2)public void getNum(){} C: (3) public void getNumdouble (){} D: (4)public double getNumfoat (){return 4.0d;}
- 将下列(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: void f(int i) { return i;} B: int f() {} C: void f(){} D: int f() { return 0;} E: int f(void){ return 0;}
- 以下哪个函数是不能编译的? A: void f(int i) { return i;} B: int f() {} C: int f() { return 0;} D: void f(){} E: int f(void){ return 0;}
- 以下哪个函数是不能编译的? A: void f(int i) { return i;} B: int f() {} C: int f() { return 0;} D: void f(){} E: int f(void){ return 0;}