下面哪个函数是public void aMethod(){...}的重载函数?( )
A: void aMethod( ){...}
B: public int aMethod(){...}
C: public void aMethod ( ){...}
D: public int aMethod ( int m){...}
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){...}
- (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(String s){...} public void aMethod(int i ){...} public void aMethod(int i,float f){...} A: 多继承 B: 重载 C: 重写 D: 封装
- 如下Java代码段,体现了()概念。 public void aMethod(String s){...} public void aMethod(int i){...} public void aMethod(int i,float f){...}
- 下面哪个函数不是 public void aMethod(int a, float b){...} 的重载函数( )。