Absolute value of NSInteger

后端 未结 3 730
花落未央
花落未央 2021-02-11 15:29

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-sa

3条回答
  •  Happy的楠姐
    2021-02-11 15:47

    You can use Foundation’s ABS() macro:

    NSInteger a = 5;
    NSInteger b = -5;
    NSLog(@"%ld %ld", ABS(a), ABS(b));
    

提交回复
热议问题