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
程序2 :
// 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://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#setRoundingMode(java.math.RoundingMode)