智慧职教: 类Test1定义如下: public class Test1{ public float aMethod(float a,float b){ } //此处是第三行位置 } 将以下哪种方法插入第三行位置是不合法的( )
举一反三
- 类Test1、Test2定义如下: A: public class Test1 B: { public float aMethod(float a,float b) throws C: IOException { } D: } E: public class Test2 extends Test1{ F: G: } 将以下哪种方法插入行6是不合法的。 H: float aMethod(float a,float b){ } I: public int aMethod(int a,int b)throws Exception{ } J: public float aMethod(float p,float q){ } K: 都不对
- 类Test1定义如下: A: public class Test1{ B: public float aMethod(float a,float b){ } C: } D: 下哪个方法插入行3是不合法的。( ) E: public float aMethod(float a, float b,float c){ } F: public float aMethod(float c,float d){ } G: public int aMethod(int a, int b){ } H: private float aMethod(int a,int b,int c){ }
- 将以下哪种方法插入到第6行是不合法的( ) 。 1.public class Test1 { 2. public float aMethod(float a,float b) throws 3. IOException { } 4. } 5.public class Test2 extends Test1{ 6. 7.}
- 类Test1定义如下 A: public float aMethod(float a, float b,float c){ } B: public float aMethod(float c,float d){ } C: public int aMethod(int a, int b){ } D: public int aMethod(int a,int b,int c){ }
- 类Test1定义,publicfloataMethod(floata,floatb){} A: 下哪种方法插入行3是不合法的。( ) B: public float aMethod(float a, float b,float c){ } C: public float aMethod(float c,float d){ } D: public int aMethod(int a, int b){ } E: private float aMethod(int a,int b,int c){ }