共计 846 个字符,预计需要花费 3 分钟才能阅读完成。
在 Java 中,常见的四舍五入方法有以下几种:
- 使用 Math.round() 方法:Math.round() 方法用于将一个浮点数进行四舍五入,返回一个最接近的整数。例如:
double num = 3.7;
long roundedNum = Math.round(num);
System.out.println(roundedNum); // 输出 4
- 使用 DecimalFormat 类:DecimalFormat 是用于格式化数值的类,可以指定数值的格式,包括四舍五入。例如:
double num = 3.7;
DecimalFormat df = new DecimalFormat("#");
String roundedNum = df.format(num);
System.out.println(roundedNum); // 输出 4
- 使用 BigDecimal 类:BigDecimal 是一个用于高精度运算的类,在进行数值计算时可以指定舍入规则。例如:
double num = 3.7;
BigDecimal bd = new BigDecimal(num);
bd = bd.setScale(0, RoundingMode.HALF_UP);
System.out.println(bd); // 输出 4
其中,setScale() 方法用于设置小数位数和舍入规则,RoundingMode.HALF_UP 表示四舍五入。
- 使用 NumberFormat 类:NumberFormat 是一个用于格式化数值的抽象类,可以用于四舍五入和其他格式化操作。例如:
double num = 3.7;
NumberFormat nf = NumberFormat.getInstance();
nf.setRoundingMode(RoundingMode.HALF_UP);
String roundedNum = nf.format(num);
System.out.println(roundedNum); // 输出 4
其中,setRoundingMode() 方法用于设置舍入规则。
丸趣 TV 网 – 提供最优质的资源集合!
正文完
发表至: Java
2023-12-21