gpt4 book ai didi

c++ - cmath 重载函数 C++ 的问题

转载 作者:搜寻专家 更新时间:2023-10-30 23:59:47 25 4
gpt4 key购买 nike

我需要使用 cmath 的 abs() 函数,但是 Visual Studio 说它重载了,我什至不能使用这样的函数:

unsigned a = 5, b = 10, c;
c = abs(a-b);

我不知道如何正确使用它。

最佳答案

versions in <cmath> 适用于浮点类型,因此没有明确的最佳匹配。整数类型的重载在 <cstdlib> 中, 所以其中一个会产生很好的匹配。如果您使用 abs在不同的类型上,您可以同时使用 include 并让重载解析完成它的工作。

#include <cmath>
#include <cstdlib>
#include <iostream>

int main()
{
unsigned int a = 5, b = 10, c;
c = std::abs(a-b);
std::cout << c << "\n"; // Ooops! Probably not what we expected.
}

另一方面,这不会产生正确的代码,因为表达式 a-b不调用 integer promotion , 所以结果是 unsigned int .真正的解决方案是对差异使用带符号的整数类型,以及整数类型 std::abs过载。

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

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