本文介绍了如何将 NSInteger 转换为 int?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

例如,当将 value 消息传递给 NSInteger 实例时,就像这样

For example when passing a value message to an NSInteger instance like so

[a value] 它会导致 EXC_BAD_ACCESS.

[a value] it causes an EXC_BAD_ACCESS.

那么如何将 NSInteger 转换为 int?

So how to convert an NSInteger to int?

如果只与小数字有关

使用了 32 个.

If it's relevant only small numbers < 32 are used.

推荐答案

达达:

NSInteger myInteger = 42;
int myInt = (int) myInteger;

NSInteger 只不过是一个 32/64 位整数.(它将根据您运行的操作系统/平台使用适当的大小)

NSInteger is nothing more than a 32/64 bit int. (it will use the appropriate size based on what OS/platform you're running)

这篇关于如何将 NSInteger 转换为 int?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 09:00