gpt4 book ai didi

java - 为什么Java double 印格式根据是否使用String.format而不同

转载 作者:行者123 更新时间:2023-11-30 05:59:42 24 4
gpt4 key购买 nike

这段代码:

 System.out.println(String.format("%f", Math.PI));
System.out.println(Math.PI);

在我的计算机上产生该结果:

3,141593
3.141592653589793

为什么第一行打印 float 时使用逗号,而第二行使用点?

最佳答案

String.format(String, Object...) 使用 Locale.getDefault() 中的格式设置规则。 String.valueOf(double) 没有。使用 String.format(Locale, String, Object...) 显式指定要使用的区域设置。

关于java - 为什么Java double 印格式根据是否使用String.format而不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2627739/

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