在Java中,常見的四舍五入方法有以下幾種:
double num = 3.7;
long roundedNum = Math.round(num);
System.out.println(roundedNum); // 輸出4
double num = 3.7;
DecimalFormat df = new DecimalFormat("#");
String roundedNum = df.format(num);
System.out.println(roundedNum); // 輸出4
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表示四舍五入。
double num = 3.7;
NumberFormat nf = NumberFormat.getInstance();
nf.setRoundingMode(RoundingMode.HALF_UP);
String roundedNum = nf.format(num);
System.out.println(roundedNum); // 輸出4
其中,setRoundingMode()方法用于設置舍入規則。