从 NSMutableArray 转换对象 - Objective c

发布于 2024-11-06 04:05:54 字数 370 浏览 2 评论 0原文

我是 Objective-C 的新手,从 8 年前的大学时代起就没有编程过。

我想知道如何将对象从可变数组转换为整数,以便我可以对其进行计算。

NSMutableArray *years = [NSArray  arrayWithObjects:@"1800",@"1801",@"1899",@"1900",@"2000",@"2001",@"2003",@"2010",nil];

int count;
count = years.count;

for(int i = 0 ; i < count ; i++)
{
   NSLog(@"The year %@ ", [years objectAtIndex:i]);
}

谢谢

I'm new to objective-c and havent programmed since my college days 8 years ago.

I wondering how do i convert an object from a mutable array to a integer so i can do a calculation to it.

NSMutableArray *years = [NSArray  arrayWithObjects:@"1800",@"1801",@"1899",@"1900",@"2000",@"2001",@"2003",@"2010",nil];

int count;
count = years.count;

for(int i = 0 ; i < count ; i++)
{
   NSLog(@"The year %@ ", [years objectAtIndex:i]);
}

Thanks

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

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

发布评论

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

评论(3

执手闯天涯 2024-11-13 04:05:54

查看 NSString 文档。

要将 NSMutableArray 中的对象转换为整数,只需执行

[[years objectAtIndex:i] intValue];

此外,您将 years 定义为 NSMutableArray 但随后创建一个 NSArray。你的第一行应该是

NSMutableArray *years = [NSMutableArray arrayWithObjects:@"1800",@"1801",@"1899",@"1900",@"2000",@"2001",@"2003",@"2010",nil];

最后,迭代数组的更好方法如下:

for(NSString *a in years){
    //do stuff here
}

Take a look at the NSString documentation.

To convert the objects in your NSMutableArray to an integer, just do

[[years objectAtIndex:i] intValue];

Also, you define years as an NSMutableArray but then you create an NSArray. You're first line should be

NSMutableArray *years = [NSMutableArray arrayWithObjects:@"1800",@"1801",@"1899",@"1900",@"2000",@"2001",@"2003",@"2010",nil];

And finally, a better way to iterate through the array would be like this:

for(NSString *a in years){
    //do stuff here
}
少女净妖师 2024-11-13 04:05:54

您可以查看 NSString 类参考,它会告诉您有一个可以传递字符串的 intValue 消息。如果您的字符串是有效数字,您将得到一个 int 返回。

例如,你可以这样做:

int sum = 0;
for(NSString* str in years) {
    sum += [str intValue];
}

You would look at the NSString class reference, which will tell you that there's an intValue message you can pass strings. If your strings are valid numbers, you'll get an int back.

For instance, you could do something like this:

int sum = 0;
for(NSString* str in years) {
    sum += [str intValue];
}
§对你不离不弃 2024-11-13 04:05:54

例如,但是不涉及错误处理:

...
int sum;

for(int i = 0 ; i < count ; i++)
{
   sum += [(NSString *)[years objectAtIndex:i] intValue];
}

看看 NSString的文档,还有一个将字符串转换为float(floatValue)的方法。

For example, however there is no error handling involved:

...
int sum;

for(int i = 0 ; i < count ; i++)
{
   sum += [(NSString *)[years objectAtIndex:i] intValue];
}

Have a look at the documentation of NSString, there is also a method to convert a string into a float(floatValue).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文