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


Java NumberFormat getIntegerInstance()用法及代码示例


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

    用法

    public static final NumberFormat getIntegerInstance()

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

    返回值:该函数返回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 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
    

    示例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 integer instance 
            NumberFormat nF 
                = NumberFormat 
                      .getIntegerInstance(); 
      
            // 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#getIntegerInstance()

  2. getIntegerIntegerInstance(Locale inLocale)方法是java.text.NumberFormat的内置方法,返回任何指定语言环境的整数格式。

    用法

    public static NumberFormat getIntegerInstance(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 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://docs.oracle.com/javase/10/docs/api/java/text/NumberFormat.html#getIntegerInstance(java.util.Locale)



相关用法


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