如下Java代码段,体现了()概念。 public void aMethod(String s){...} public void aMethod(int i){...} public void aMethod(int i,float f){...}
举一反三
- 下面代码体现了()概念。 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() {}