使用 JSON 解析来自 Web 服务的浮点数

发布于 2024-11-04 07:50:15 字数 362 浏览 1 评论 0原文

解析 NSString 我使用了这个:

NSString *adress=[stations objectForKey:@"adress_station"];

浮点数怎么样,我应该如何调用它,我尝试这样做:

       float distance=[stations objectForKey:@"distance"];

但我遇到了一个错误:

incompatible type in initialization

我不想将它放入 NSString 中,我需要它作为浮点数,因为我在其他操作中需要它:)

to parse a NSString i have used this :

NSString *adress=[stations objectForKey:@"adress_station"];

what about a float, how should i call it, i try to do that :

       float distance=[stations objectForKey:@"distance"];

but i have got an error :

incompatible type in initialization

i don't want to put it in NSString, i need it as float because i need it in other operations :)

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

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

发布评论

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

评论(1

穿透光 2024-11-11 07:50:15
float distance = [[stations objectForKey:@"distance"] floatValue];

objectForKey 返回一个对象(在本例中我假设是一个 NSString)。

在 NSString 上调用 -floatValue 将获取浮点型数据。

float distance = [[stations objectForKey:@"distance"] floatValue];

objectForKey returns an object (in this case I assume an NSString).

Calling -floatValue on an NSString will get the data as a float.

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