java对最后结果保留多少位小数,可以类似python使用format函数
例如

double size=2.334;
System.out.print(String.format("%.1f",size));
//使用format函数就可以保留小数了,这里是保留一位小数
//所以结果是2.3