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


Java NumberFormat getPercentInstance()用法及代碼示例


  1. getPercentInstance()方法是java.text.NumberFormat的內置方法,返回當前默認FORMAT語言環境的百分比格式。

    用法

    public static final NumberFormat getPercentInstance()

    參數:該函數不接受任何參數。


    返回值:該函數返回NumberFormat實例以進行百分比格式化。

    下麵是上述函數的實現:

    示例1:

    // Java program to implement 
    // the above function 
      
    import java.text.NumberFormat; 
    import java.util.Locale; 
    import java.util.Currency; 
      
    public class Main { 
        public static void main(String[] args) 
            throws Exception 
        { 
      
            // Get the percent instance 
            NumberFormat nF 
                = NumberFormat.getPercentInstance(); 
      
            // Sets the currency to Canadian Dollar 
            nF.setCurrency(Currency 
                               .getInstance( 
                                   Locale.CANADA)); 
      
            // Stores the values 
            String values 
                = nF.getCurrency() 
                      .getDisplayName(); 
      
            // Prints the currency 
            System.out.println(values); 
        } 
    }
    輸出:
    Canadian Dollar
    

    示例2:

    // Java program to implement 
    // the above function 
      
    import java.text.NumberFormat; 
    import java.util.Locale; 
    import java.util.Currency; 
      
    public class Main { 
        public static void main(String[] args) 
            throws Exception 
        { 
      
            // Get the percent instance 
            NumberFormat nF 
                = NumberFormat 
                      .getPercentInstance(); 
      
            // Stores the values 
            String values 
                = nF.getCurrency() 
                      .getDisplayName(); 
      
            // Prints the currency 
            System.out.println(values); 
        } 
    }
    輸出:
    US Dollar
    

    參考: https://docs.oracle.com/javase/10/docs/api/java/text/NumberFormat.html#getPercentInstance()

  2. getPercentInstance(Locale inLocale)方法是java.text.NumberFormat的內置方法,返回任何指定語言環境的百分比格式。

    用法

    public static NumberFormat getPercentInstance(Locale inLocale)

    參數:該函數接受inLocale的單個必需參數,該參數描述要指定的語言環境。

    返回值:該函數返回NumberFormat實例以進行百分比格式化。

    下麵是上述函數的實現:

    示例1:

    // Java program to implement 
    // the above function 
      
    import java.text.NumberFormat; 
    import java.util.Locale; 
    import java.util.Currency; 
      
    public class Main { 
        public static void main(String[] args) 
            throws Exception 
        { 
      
            // Get the percent instance 
            NumberFormat nF 
                = NumberFormat 
                      .getPercentInstance( 
                          Locale.CANADA); 
      
            // Stores the values 
            String values 
                = nF.getCurrency() 
                      .getDisplayName(); 
      
            // Prints the currency 
            System.out.println(values); 
        } 
    }
    輸出:
    Canadian Dollar
    

    參考: https://docs.oracle.com/javase/10/docs/api/java/text/NumberFormat.html#getPercentInstance(java.util.Locale)



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 NumberFormat getPercentInstance() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。