本文介绍了NSInteger 的绝对值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
参考在Objective-C中转换为绝对值我我想知道是否有 NS typedefed 类型的函数.或者 abs(NSInteger)
好吗?它在架构上安全吗?
Referring to Convert to absolute value in Objective-C I'm wondering if there are functions for NS typedefed types. Or is abs(NSInteger)
okay? Is it architecture-safe?
推荐答案
使用 ABS() 宏,在 NSObjCRuntime.h 中定义,它是架构安全的.
Use ABS() macro, which is defined in NSObjCRuntime.h, it is architecture-safe.
这篇关于NSInteger 的绝对值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!