当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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)



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 DecimalFormat setRoundingMode() method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。