當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。