下列哪些答案和给定的show方法重载了?
void show(double a,boolean b,char c){}
A
void show(boolean b,double a,char c){}//重载了,类型不同。
B
int show(double x,boolean y,char z){}//没有重载,而且这个不能和给定函数存在于一个类中。会引发调用的不确定性。
C
void show(int a,int b,int c){}//重载。类型不同。
D
void show(double x,boolean y,char z){}//不重载,一模一样。不允许存在同一个类中,调用的不确定性。
E
boolean show(double a,double b,char c){}//重载,类型不同。
F
int show(int a,char c){}//重载,个数不同。 |