gpt4 book ai didi

Kotlin中双数的字符串插值

转载 作者:行者123 更新时间:2023-12-02 13:24:26 26 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Format in Kotlin string templates

(8 个回答)


4年前关闭。




如何在 Kotlin 中的句点之后对带有 2 个数字的 double 数使用字符串插值?

例如

val d = 3.54213
println("d = $d")

将获得 d = 3.54213 .

我想得到 d = 3.54 .

谢谢你。

最佳答案

你可以尝试这样的事情:

   // string interpolation
val d = 3.54213
println("d = %.2f".format(d))

这个 link也有相同的答案,但它说

There's clearly a piece of functionality here that is missing from Kotlin at the moment, we'll fix it.



很快,你就会在 Kotlin 上看到这个。

希望这可以帮助!

关于Kotlin中双数的字符串插值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44339907/

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