Objective C中的“fabs”是什么?

时间:2013-12-20 01:35:11

标签: objective-c c

发现这段代码......

if(fabs([tempPlacemark getCoordinate].latitude-latitude) < latDelta && fabs([tempPlacemark getCoordinate].longitude-longitude)<longDelta )
...

在Math.h中引用它:

extern float fabsf(float);
extern double fabs(double);
extern long double fabsl(long double);

那我在看什么?

1 个答案:

答案 0 :(得分:20)

double fabs( double ) - 返回参数的绝对值

NSLog(@"res: %.f", fabs(10)); //result 10 NSLog(@"res: %.f", fabs(-10)); //result 10

found here.