每当我运行此代码时......
#include <iostream>
int add(int x, int y){
return x+y;
}
float add(float x, float y){
return x+y;
}
int main(){
using namespace std;
add(1.11, 1.11);
return 0;
}
...我收到此错误:
18.cpp: In function ‘int main()’:
18.cpp:24:16: error: call of overloaded ‘add(double, double)’ is ambiguous
add(1.11, 1.11);
^
18.cpp:24:16: note: candidates are:
18.cpp:7:5: note: int add(int, int)
int add(int x, int y){
^
18.cpp:11:7: note: float add(float, float)
float add(float x, float y){
我认为1.11显然是浮点数,而不是整数。当我将float
更改为double
时,该程序可以正常运行。
为什么C ++说这个电话不明确?
答案 0 :(得分:4)
在C ++中,像1.11
这样的十进制文字类型被定义为double。鉴于它必须将双精度转换为int
或float
,这会导致歧义。
f
后缀为1.11f
的文字的类型为float。