gpt4 book ai didi

c++ - 重载 C++ 函数浮点参数错误

转载 作者:行者123 更新时间:2023-12-02 11:11:53 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Strange ambiguous call to overloaded function error

(11 个回答)


7 个月前关闭。




我一直在编写一对重载的 C++ 函数,一个采用 2 个整数参数,另一个采用 2 个浮点数。

但是代码块编译器说:

error: call of overloaded 'func(double, double)' is ambiguous

为什么 double如果我指定 float ?

我正在使用这两个函数来求和它们的值并在 cout 上显示结果在他们里面。作为参数给出的浮点值是 1.14 和 3.33,不是大的浮点数......

有人知道吗?谢谢!
#include <iostream>
using namespace std;

void func(int a, int b) {
cout << a+b;
}

void func(float a, float b)
cout << a+b;
}

int main() {
func(3, 7);
func(1.14, 3.33);

}

最佳答案

函数调用func(1.14, 3.33)是模棱两可的,因为 1.143.33是 double ,两者都可以转换为 intfloat .因此编译器不知道调用哪个函数。
您可以通过显式指定常量的类型来解决此问题 func(float(1.14), float(3.33))或通过从 func(float, float) 更改重载至func(double, double) .
在这种情况下,明确告诉编译器使用哪种类型可能是一个更好的主意。

关于c++ - 重载 C++ 函数浮点参数错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49836364/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com