将 NSInteger 转换为 NSUInteger?
我正在尝试将 NSInteger 转换为 NSUInteger,我用 google 搜索了它,但没有找到真正的答案。我该怎么做?
I am trying to convert a NSInteger to a NSUInteger and I googled it and found no real answer. How would I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
NSInteger
和NSUInteger
只是原始整数类型的 typedef:因此,您不需要在它们之间“转换”。一个简单的转换就足够了。喜欢:
NSInteger
andNSUInteger
are just typedefs for primitive integer types:As such, you don't need to "convert" between them. A simple cast should be sufficient. Like:
由于这可能对其他遇到此问题的人有用,因此这里有一个小表格,向您展示了转换的实际效果。这些值是直接从调试器中以十六进制值形式获取的。进行相应的选择,正如您所看到的,投射确实会产生效果。对于 32 位,删除底部 ffffffff,对于 16 位,删除底部 ffffffffffff。另请注意,-1 始终为 0xffffffffffffffff。
Since this might be useful for other coming across this issue here is a little table showing you the actual effect of casting. These values were taken straight from the debugger as hex values. Choose accordingly, as you can see casting does cause effects. For 32-bit, lop off the bottom ffffffff and for 16-bit lop off bottom ffffffffffff. Also note, -1 is always 0xffffffffffffffff.
如果您确定您的
NSInteger
大于或等于 0,则只需将其转换为NSUInteger
即可。如果您的NSInteger
表示负数,则不应转换为NSUInteger
,因为这可能会导致不一致。结果为
If you are certain that your
NSInteger
is greater than or equal to zero, you simply cast it asNSUInteger
. You should not be casting toNSUInteger
if yourNSInteger
represents a negative number, as it may lead to inconsistency.results in
如果您想要将整数转换为无符号整数,那么您要么知道该整数永远不会为负数,要么您可能希望将所有负值转换为绝对值(即无符号值) 。转换为绝对值非常简单:
fabs()
是一个 C 函数,可为任何浮点数返回绝对值。这里,myUnsignedInteger
的值为 100。将显示此类函数的可能用例,您可以在其中以不同的格式指示负值。例如,在会计中,负数显示在括号中:
请注意,从技术角度来看,您可以简单地将 NSInteger 分配给 NSUInteger - 这甚至不需要强制转换 - 但当 NSInteger 为负数时,NSUInteger 将返回非常大的正数,这显然是非常不受欢迎的副作用:
If you are wanting to convert an integer to an unsigned integer, you are either in a situation where you know that the integer will never be negative, or you may be wanting all negative values to be converted to absolute values (i.e., unsigned values). Doing this conversion to an absolute value is straightforward:
fabs()
is a C function that returns an absolute value for any float. Here,myUnsignedInteger
would have a value of 100.Possible use cases for such a function would be display where you will indicate the negative values in a different format. For instance, in accounting negative numbers are displayed in parentheses:
Note that from a technical point of view, you could simply assign an NSInteger to an NSUInteger—this does not even require a cast—but when the NSInteger is negative the NSUInteger will return a very large positive number, which is clearly a highly undesirable side effect: