double abs( double num );
constexpr /* floating-point-type */
abs( /* floating-point-type */ num );
double fabs ( double num );
constexpr /* floating-point-type */
fabs ( /* floating-point-type */ num );
float fabsf( float num );
(3) (since C++11)long double fabsl( long double num );
(4) (since C++11)template< class Integer >
double fabs ( Integer num );
1-4) Computes the absolute value of the floating-point value num. The library provides overloads of std::abs
and std::fabs
for all cv-unqualified floating-point types as the type of the parameter num.(since C++23)
A) Additional overloads are provided for all integer types, which are treated as double.
(since C++11)For integral arguments, the integral overloads of std::abs
are likely better matches. If std::abs
is called with an unsigned integral argument that cannot be converted to int by integral promotion, the program is ill-formed.
If successful, returns the absolute value of arg (|arg|
). The value returned is exact and does not depend on any rounding modes.
This function is not subject to any of the error conditions specified in math_errhandling.
If the implementation supports IEEE floating-point arithmetic (IEC 60559),
The additional overloads are not required to be provided exactly as (A). They only need to be sufficient to ensure that for their argument num of integer type, std::fabs(num) has the same effect as std::fabs(static_cast<double>(num)).
[edit] Example#include <cmath> #include <iostream> int main() { std::cout << "abs(+3.0) = " << std::abs(+3.0) << '\n' << "abs(-3.0) = " << std::abs(-3.0) << '\n'; // special values std::cout << "abs(-0.0) = " << std::abs(-0.0) << '\n' << "abs(-Inf) = " << std::abs(-INFINITY) << '\n' << "abs(-NaN) = " << std::abs(-NAN) << '\n'; }
Possible output:
abs(+3.0) = 3 abs(-3.0) = 3 abs(-0.0) = 0 abs(-Inf) = inf abs(-NaN) = nan[edit] Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR Applied to Behavior as published Correct behavior LWG 2192 C++98 overloads ofstd::abs
were
std::abs
for integer types
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4