Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。












想要改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。

7年前关闭。



Improve this question




找到了这段代码...
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);

那我在看什么呢?

最佳答案

double fabs( double )-返回参数的绝对值
NSLog(@"res: %.f", fabs(10)); //result 10NSLog(@"res: %.f", fabs(-10)); //result 10
found here.

关于objective-c - 什么是 objective-c 中的 “fabs”? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20694892/

10-09 15:35