gpt4 book ai didi

ios - Swift:将 String 转换为 Float 并在进行一些数学运算后再次返回 String

转载 作者:可可西里 更新时间:2023-11-01 01:57:51 29 4
gpt4 key购买 nike

我一直在谷歌上搜索并试图了解事情如何快速地与 Float 值一起工作,但似乎无法理解它,我真的很感激任何帮助,我觉得我只是在浪费我的时间.

例如,假设我有一个返回一些 json 数据的 API,我解析该数据,进行一些计算,然后将一些数据呈现给用户,如下所示:

let balance : String = "773480.67"        // value that was received through json api
let commission : String = "100000.00" // value that was received through json api

//framework maps the json properties
let floatBalance : Float = Float(balance)! // at this point value is 773480.688
let floatCommission : Float = Float(commission)! //100000.0

//we do some math with the values
let result : Float = floatBalance + floatCommission // this is somehow 873480.687

//and then show some of the values on a label
print("stringBalance: \(balance)") //stringBalance: 773480.67
print("floatBalance: \(floatBalance)") //floatBalance: 773481.0
print("floatCommission: \(floatCommission)") //floatCommission: 100000.0
print("result: \(result)") //result: 873481.0
print("label: \(String(format:"%.2f", result))") //label: 873480.69
print("just kill me now")

我正在使用 EVReflection将 json 属性映射到一个对象的框架,因此从 String 到 Float 的转换是在后台完成的,我不需要做太多,但上面显示的值基本上是我正在使用的。

我的问题是,最后我需要做什么才能从生成的 float (873480.687) 中获取正确的字符串 (873480.67) 或者我的方法是错误的从一开始?

谢谢

最佳答案

其实float是不能准确表示数字的,得用Double。这是关于该问题的一个非常好的答案: https://stackoverflow.com/a/3730040/4662531

编辑:

抱歉,但实际上不应该使用 Double 来执行计算(我从变量的命名假设您正在处理一些银行事务)。上面链接答案的那部分确实给出了一个很好的建议:

A solution that works in just about any language is to use integers instead, and count cents. For instance, 1025 would be $10.25. Several languages also have built-in types to deal with money. Among others, Java has the BigDecimal class, and C# has the decimal type.

我的一位曾经在一家银行公司工作的同事也证实,所有的计算都是在没​​有使用 Floats 或 Double 的情况下完成的,而是按照链接中的建议使用 Int。

关于ios - Swift:将 String 转换为 Float 并在进行一些数学运算后再次返回 String,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49869689/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com