Java Double精确到小数点后5位:使用DecimalFormat类
在Java中,可以使用'DecimalFormat'类来实现'double'精确到小数点后5位。
以下是一个例子:
import java.text.DecimalFormat;
public class Main {
public static void main(String[] args) {
double number = 3.14159265358979323846;
DecimalFormat df = new DecimalFormat("#.#####");
String formattedNumber = df.format(number);
System.out.println(formattedNumber);
}
}
输出结果为:3.14159
原文地址: http://www.cveoy.top/t/topic/hs5T 著作权归作者所有。请勿转载和采集!