📌  相关文章
📜  Java中的 DecimalFormat setRoundingMode() 方法

📅  最后修改于: 2022-05-13 01:54:40.229000             🧑  作者: Mango

Java中的 DecimalFormat setRoundingMode() 方法

setRoundingMode()方法是Java中Java .text.DecimalFomrat类的内置方法,用于设置与此 DecimalFormat 实例一起使用的 RoundingMode 以四舍五入小数位数。

语法

public void setRoundingMode(RoundingMode roundingMode)

参数:该函数接受单个参数roundingMode ,该参数是要为此 DecimalFormat 实例设置的 RoundingMode 实例。

返回值:该函数不返回任何值。

下面是上述函数的实现:

程序 1

// Java program to illustrate the
// setRoundingMode() method
  
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.math.RoundingMode;
import java.util.Currency;
import java.util.Locale;
  
public class Main {
    public static void main(String[] args)
    {
  
        // Create the DecimalFormat Instance
        DecimalFormat deciFormat = new DecimalFormat();
  
        // Set the rounding mode as CEILING
        deciFormat.setRoundingMode(RoundingMode.CEILING);
  
        System.out.println(deciFormat.format(1234.5555));
    }
}
输出:
1, 234.556

方案二

// Java program to illustrate the
// setRoundingMode() method
  
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.math.RoundingMode;
import java.util.Currency;
import java.util.Locale;
  
public class Main {
    public static void main(String[] args)
    {
  
        // Create the DecimalFormat Instance
        DecimalFormat deciFormat = new DecimalFormat();
  
        // Set the rounding mode as HALF_DOWN
        deciFormat.setRoundingMode(RoundingMode.HALF_DOWN);
  
        System.out.println(deciFormat.format(1234.5555));
    }
}
输出:
1, 234.555

参考:https: Java Java.math.RoundingMode)