计算参数的绝对值。
语法
int abs( int n );
long labs( long n );
long long llabs( long long n );
__int64 _abs64( __int64 n );
long abs( long n ); // C++ only
long long abs( long long n ); // C++ only
double abs( double n ); // C++ only
long double abs( long double n ); // C++ only
float abs( float n ); // C++ only
参数
n
数值。
返回值
abs
、labs
、llabs
和 _abs64
函数将返回参数 n
的绝对值。 无错误返回。
备注
由于 C++ 允许重载,因此你可以调用采用并返回 long
、long long
、float
、double
和 long double
值的 abs
重载。 这些重载在 <cmath>
标头中进行定义。 在 C 程序中,abs
始终采用并返回 int
。
Microsoft 特定:任何整型类型中可表示的负整数范围大于该类型中可表示的正整数范围。 因此,可以为无法转换的这些函数提供参数。 如果参数的绝对值无法由返回类型表示,则 abs
函数返回参数值不变。 具体而言,abs(INT_MIN)
返回 INT_MIN
、labs(LONG_MIN)
返回 LONG_MIN
、llabs(LLONG_MIN)
返回 LLONG_MIN
,_abs64(_I64_MIN)
返回 _I64_MIN
。 实际上,abs
函数不能用于保证正值。
要求
例程 | 必需的 C 标头 | 必需的 C++ 标头 |
---|---|---|
.- . | <math.h> 或 <stdlib.h> |
<cmath> 、<cstdlib> 、<stdlib.h> 或 <math.h> |
_abs64 |
<stdlib.h> |
<cstdlib> 或 <stdlib.h> |
若要在C ++中使用 abs
的重载版本,则必须包括 <cmath>
标头。
示例
此程序计算并显示几个数字的绝对值。
// crt_abs.c
// Build: cl /W3 /TC crt_abs.c
// This program demonstrates the use of the abs function
// by computing and displaying the absolute values of
// several numbers.
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <limits.h>
int main( void )
{
int ix = -4;
long lx = -41567L;
long long llx = -9876543210LL;
__int64 wx = -1;
// absolute 32 bit integer value
printf_s("The absolute value of %d is %d\n", ix, abs(ix));
// absolute long integer value
printf_s("The absolute value of %ld is %ld\n", lx, labs(lx));
// absolute long long integer value
printf_s("The absolute value of %lld is %lld\n", llx, llabs(llx));
// absolute 64 bit integer value
printf_s("The absolute value of 0x%.16I64x is 0x%.16I64x\n", wx,
_abs64(wx));
// Integer error cases:
printf_s("Microsoft implementation-specific results:\n");
printf_s(" abs(INT_MIN) returns %d\n", abs(INT_MIN));
printf_s(" labs(LONG_MIN) returns %ld\n", labs(LONG_MIN));
printf_s(" llabs(LLONG_MIN) returns %lld\n", llabs(LLONG_MIN));
printf_s(" _abs64(_I64_MIN) returns 0x%.16I64x\n", _abs64(_I64_MIN));
}
The absolute value of -4 is 4
The absolute value of -41567 is 41567
The absolute value of -9876543210 is 9876543210
The absolute value of 0xffffffffffffffff is 0x0000000000000001
Microsoft implementation-specific results:
abs(INT_MIN) returns -2147483648
labs(LONG_MIN) returns -2147483648
llabs(LLONG_MIN) returns -9223372036854775808
_abs64(_I64_MIN) returns 0x8000000000000000