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

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

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

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

    语法

    public static final NumberFormat getIntegerInstance()

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

    返回值:该函数返回 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 integer instance
            NumberFormat nF = NumberFormat.getIntegerInstance();
      
            // 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 integer instance
            NumberFormat nF
                = NumberFormat
                      .getIntegerInstance();
      
            // Stores the values
            String values
                = nF.getCurrency()
                      .getDisplayName();
      
            // Prints the currency
            System.out.println(values);
        }
    }
    
    输出:
    US Dollar
    

    参考: https: Java/text/NumberFormat.html#getIntegerInstance()

  2. getIntegerIntegerInstance(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 integer instance
            NumberFormat nF
                = NumberFormat
                      .getIntegerInstance(
                          Locale.CANADA);
      
            // Stores the values
            String values
                = nF.getCurrency()
                      .getDisplayName();
      
            // Prints the currency
            System.out.println(values);
        }
    }
    
    输出:
    Canadian Dollar
    

    参考: https: Java Java.util.Locale)