一、方法重载、 1. 在同一个类中 :
方法名相同,参数列表不同,与返回值无关,
参数列表不同:
a. 参数个数不同,
b.参数类型不同,
c.参数的顺序不同
eg: 已知函数:void show ( int a,int b, float c ){ }
A. void show(int a,float c,int b){ }
B. void show(int x,int y,float z){ }
C. void show(int a,float c,int b){return a}
D. void show(int a,float c){return a}
答案:B和D与函数show不是函数重载,
|
|