gpt4 book ai didi

java - 格式化 float

转载 作者:搜寻专家 更新时间:2023-10-30 20:58:58 25 4
gpt4 key购买 nike

我有一个 double 类型的变量,我需要以最多 3 位小数的精度打印它,但它不应该有任何尾随零...

例如。我需要

2.5 // not 2.500
2 // not 2.000
1.375 // exactly till 3 decimals
2.12 // not 2.120

我尝试使用 DecimalFormatter,我做错了吗?

DecimalFormat myFormatter = new DecimalFormat("0.000");
myFormatter.setDecimalSeparatorAlwaysShown(false);

谢谢。 :)

最佳答案

尝试使用模式 "0.###" 而不是 "0.000":

import java.text.DecimalFormat;

public class Main {
public static void main(String[] args) {
DecimalFormat df = new DecimalFormat("0.###");
double[] tests = {2.50, 2.0, 1.3751212, 2.1200};
for(double d : tests) {
System.out.println(df.format(d));
}
}
}

输出:

2.5
2
1.375
2.12

关于java - 格式化 float ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4733089/

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