Java常见的四舍五入方法有哪些

1330
2023/9/2 0:23:12
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在Java中,常见的四舍五入方法有以下几种:

  1. 使用Math.round()方法:Math.round()方法用于将一个浮点数进行四舍五入,返回一个最接近的整数。例如:
double num = 3.7;
long roundedNum = Math.round(num);
System.out.println(roundedNum); // 输出4
  1. 使用DecimalFormat类:DecimalFormat是用于格式化数值的类,可以指定数值的格式,包括四舍五入。例如:
double num = 3.7;
DecimalFormat df = new DecimalFormat("#");
String roundedNum = df.format(num);
System.out.println(roundedNum); // 输出4
  1. 使用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表示四舍五入。

  1. 使用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()方法用于设置舍入规则。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: java算法有哪些