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


Java DecimalFormat getRoundingMode()用法及代码示例


getRoundingMode()方法是Java中java.text.DecimalFomrat类的内置方法,用于获取在此DecimalFormat实例中用于对数字进行舍入的舍入模式。

用法

public RoundingMode getRoundingMode()

参数:该函数不接受任何参数。


返回值:该函数返回用于此DecimalFormat实例的舍入模式以舍入数字。

下面是上述函数的实现:

程序1

// Java program to illustrate the 
// getRoundingMode() method 
  
import java.text.DecimalFormat; 
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(); 
  
        // Print the rounding mode value 
        System.out.println(deciFormat.getRoundingMode().name()); 
    } 
}
输出:
HALF_EVEN

程序2

// Java program to illustrate the 
// getRoundingMode() method 
  
import java.text.DecimalFormat; 
import java.util.Currency; 
import java.util.Locale; 
import java.math.RoundingMode; 
  
public class Main { 
    public static void main(String[] args) 
    { 
  
        // Create the DecimalFormat Instance 
        DecimalFormat deciFormat = new DecimalFormat(); 
        deciFormat.setRoundingMode(RoundingMode.HALF_UP); 
  
        // Print the Rounding Mode 
        System.out.println(deciFormat.getRoundingMode()); 
    } 
}
输出:
HALF_UP

参考: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#getRoundingMode()



相关用法


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