NSArry 浮点数问题

发布于 2024-09-29 08:01:54 字数 686 浏览 6 评论 0原文

我正在尝试创建一个 NSArray 浮点数。但是,一旦将该值添加到数组中,它始终为 0.0000000。

我做错了什么?

NSLog(@"百分比:%f",百分比);打印正确的值和

NSLog(@"timeArray: %f", [timeArray objectAtIndex:i]);始终为 0.00000。

 NSMutableArray *timeArray = [[NSMutableArray alloc] initWithCapacity:count];

 for (int i = 0; i < count; i++) {
  int time = Counter->getTime(i);

  float percent = (float)(time - startTime) / (float)endTime;
        NSLog(@"percent: %f" , percent); // This prints correct value

  [timeArray addObject:[NSNumber numberWithFloat: percent]];
  NSLog(@"timeArray: %f", [timeArray objectAtIndex:i]);  // This prints 0.00000
 }

我在使用 iPhone,内存不足,这可能是造成这种情况的原因吗?

Im trying to create an NSArray of floats. However, once the value is added to the arrays it is alway 0.0000000.

What am i doing wrong?

NSLog(@"percent: %f" , percent); prints the correct value and

NSLog(@"timeArray: %f", [timeArray objectAtIndex:i]); is always 0.00000.

 NSMutableArray *timeArray = [[NSMutableArray alloc] initWithCapacity:count];

 for (int i = 0; i < count; i++) {
  int time = Counter->getTime(i);

  float percent = (float)(time - startTime) / (float)endTime;
        NSLog(@"percent: %f" , percent); // This prints correct value

  [timeArray addObject:[NSNumber numberWithFloat: percent]];
  NSLog(@"timeArray: %f", [timeArray objectAtIndex:i]);  // This prints 0.00000
 }

Im on the iphone and running out of memory, could that be causing it?

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

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

发布评论

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

评论(2

微凉徒眸意 2024-10-06 08:01:54

在第二个 NSLog 中,您正在打印 NSNumber,而不是内部的浮点数..以查看该值..

NSLog(@"timeArray: %f", [[timeArray objectAtIndex:i] floatValue]);

in the second NSLog, you are printing an NSNumber, not the float inside..to see that value..

NSLog(@"timeArray: %f", [[timeArray objectAtIndex:i] floatValue]);
℡寂寞咖啡 2024-10-06 08:01:54

尝试

NSLog(@"timeArray: %f", [[timeArray objectAtIndex:i] floatValue]);

最后

一下。您试图打印出指向 NSNumber 的指针,而不是存储在其中的值。

try

NSLog(@"timeArray: %f", [[timeArray objectAtIndex:i] floatValue]);

at the end.

You're trying to print out the pointer to the NSNumber, not the value stored in it.

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