📌  相关文章
📜  Java中的 NumberFormat getPercentInstance() 方法及示例

📅  最后修改于: 2022-05-13 01:54:33.616000             🧑  作者: Mango

Java中的 NumberFormat getPercentInstance() 方法及示例

  1. getPercentInstance()方法是Java.text.NumberFormat的内置方法,返回当前默认 FORMAT 语言环境的百分比格式。

    语法

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

    返回值:该函数返回用于百分比格式的 NumberFormat 实例。

    下面是上述函数的实现:

    方案一:

    // 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
    

    方案二:

    // 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: Java/text/NumberFormat.html#getPercentInstance()

  2. getPercentInstance(Locale inLocale)方法是Java.text.NumberFormat的内置方法,返回任何指定语言环境的百分比格式。

    语法

    参数:该函数接受一个强制参数inLocale ,该参数描述要指定的语言环境。

    返回值:该函数返回用于百分比格式的 NumberFormat 实例。

    下面是上述函数的实现:

    方案一:

    // 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: Java Java.util.Locale)