NSNumber、设置和检索

发布于 2024-08-10 20:20:02 字数 482 浏览 10 评论 0原文

我正在为 iPhone 应用程序使用 NSNumber,看看我能用它做什么。对于我的大多数变量,我简单地将它们存储为“int”或“float”或其他类型。但是,当我必须传递一个对象(例如在字典中)时,我需要它们作为对象。我使用 NSNUMer。这就是我初始化对象的方式。

NSNumber *testNum = [NSNumber numberWithInt:varMoney];

其中“varMoney”是我在程序前面声明的一个整数。但是,我完全不知道如何取回该数字......

例如:

varMoney2 = [NSNumber retrieve the variable...];

如何从对象取回值并将其再次设置为常规“int”?

谢谢!

(出于好奇,有没有办法将“int”直接存储在 Objective-C 字典中,而不先将其放入 NSNumber 中?)

I'm messing around with NSNumber for an iPhone app, and seeing what I can do with it. For most of my variables, I simple store them as "int" or "float" or whatnot. However, when I have to pass an object (Such as in a Dictionary) then I need them as an Object. I use NSNUmber. This is how I initialize the object.

NSNumber *testNum = [NSNumber numberWithInt:varMoney];

Where "varMoney" is an int I have declared earlier in the program. However, I have absolutely no idea how to get that number back...

for example:

varMoney2 = [NSNumber retrieve the variable...];

How do I get the value back from the object and set it to a regular "int" again?

Thanks!

(Out of curiosity, is there a way to store "int" directly in an Objective-C dictionary without putting it in an NSNumber first?)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

灯下孤影 2024-08-17 20:20:02

您需要 -intValue 或其朋友之一(-floatValue、-doubleValue 等)。来自文档:

intValue 返回接收者的值
作为一个整数。

- (int)intValue

返回值 接收者的值为
一个 int,根据需要进行转换。

代码是:

int varMoney2 = [testNum intValue];

You want -intValue, or one of its friends (-floatValue, -doubleValue, etc.). From the docs:

intValue Returns the receiver’s value
as an int.

- (int)intValue

Return Value The receiver’s value as
an int, converting it as necessary.

The code would be:

int varMoney2 = [testNum intValue];
清晰传感 2024-08-17 20:20:02
NSNumber *testNum = [NSNumber numberWithInt:varMoney];
/* Then later... */
int newVarMoney = [testNum intValue];
NSNumber *testNum = [NSNumber numberWithInt:varMoney];
/* Then later... */
int newVarMoney = [testNum intValue];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文