problems with cmath overloaded functions C++

2019-07-14 07:12发布

I need to use cmath's abs() function, but Visual Studio says it's overloaded and I can't even use something like this:

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

I don't know how to use it properly.

3条回答
Viruses.
2楼-- · 2019-07-14 07:36

You can use the ternary operator:

c = (a > b) ? a - b : b - a;
查看更多
姐就是有狂的资本
3楼-- · 2019-07-14 07:41

As you can see here, there is no cmath function abs that takes an unsigned integer. This is because unsigned integers are never negative. Try doing the following instead:

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

In this case, c = 5 as expected.

查看更多
三岁会撩人
4楼-- · 2019-07-14 07:57

The versions in <cmath> are for floating point types, so there is no unambiguously best match. The overload for integral types are in <cstdlib>, so one of those will yield a good match. If you are using abs on different types, you can use both includes and let overload resolution do its work.

#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.
}

On the other hand, this doesn't yield correct code, since the expression a-b does not invoke integer promotion, so the result is an unsigned int. The real solution is to use signed integral types for differences, as well as the integral type std::abs overloads.

查看更多
登录 后发表回答