规则
- 函数名相同
- 参数个数不同、参数类型不同、参数顺序不同
注意
- 返回值类型和函数重载无关
- 调用函数时,实参的隐式类型转换可能会产生二义性
int sum(int v1, int v2) {
return v1 + v2;
}
int sum(int v1, int v2, int v3) {
return v1 + v2 + v3;
}
void func(int v1, double v2) {
cout << "func(int v1, double v2)" << endl;
}
void func(double v1, int v2) {
cout << "func(double v1, int v2)" << endl;
}
网友评论