举一反三
- 下面代码体现了()概念。 public void aMethod(String s){...} public void aMethod(int i ){...} public void aMethod(int i,float f){...} A: 多继承 B: 重载 C: 重写 D: 封装
- (1+X)以下哪个不是 “public static void aMethod(){...}” 的重载方法( )? A: public static void aMethod(int num ) ; B: public static int aMethod() ; C: public static void aMethod(int num ,String name) ; D: public static void aMethod(String name) ;
- 下面哪个函数是public void aMethod(){...}的重载函数?( ) A: void aMethod( ){...} B: public int aMethod(){...} C: public void aMethod ( ){...} D: public int aMethod ( int m){...}
- 下面哪个函数是public void aMethod(){...}的重载函数? A: public int aMethod(){...} B: public aMethod(){...} C: public int aMethod ( int m){...} D: int aMethod ( int m){...}
- 如下代码:public class X {public X aMethod() { return this;}}public class Y extends X { }哪两个方法能加到Y类的定义中? A: public void aMethod(String s) {} B: public void aMethod() {} C: private Y aMethod() { return null; } D: public X aMethod() { return new Y(); } E: private void aMethod() {}
内容
- 0
有下面的类定义,与aMethod()重载的方法有?( )[br][/br]public class MyClass{[br][/br] public float aMethod(float a, float b){[br][/br]return 0;[br][/br]}[br][/br]}[br][/br] [br][/br](2.0) A: public int aMethod(int a, int b){} B: public float aMethod(float x, float y){} C: public float aMethod(float a , float b, int c){} D: public float aMethod(int a, int b, int c){} E: public void aMethod(float a, float b){}
- 1
类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){ }
- 2
下列代码的执行结果是 。public class Test {public int aMethod(){static int i=0;i++;System.out.println(i);}public static void main(String args[ ]){Test test = new Test();test.aMethod();}}
- 3
有下面的类定义,与aMethod()重载的方法有( )。 public class MyClass{ public float aMethod(float a, float b){ return 0; } } A: public int aMethod(int a, int b){} B: public float aMethod(float x, float y){} C: public float aMethod(float a , float b, int c){} D: public float aMethod(int a, int b, int c){}
- 4
类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){ }