Java NumberFormat hashCode()方法及示例

Java NumberFormat hashCode()方法及示例

hashCode() 方法是 java.text.NumberFormat 的一个内置方法,为这个给定的实例对象返回一个哈希代码值。

语法:

public int hashCode()

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

返回值 :该函数返回哈希代码值。

下面是上述函数的实现。

程序 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 instance for Locale US
        NumberFormat nF
            = NumberFormat
                  .getInstance(Locale.US);
  
        // Prints the hash-code value
        System.out.println("The hash-code values is: "
                           + nF.hashCode());
    }
}

输出。

The hash-code values is: 423132

程序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 instance for Locale US
        NumberFormat nF
            = NumberFormat
                  .getInstance(Locale.US);
  
        // Prints the hash-code value
        System.out.println("The hash-code values is: "
                           + nF.hashCode());
    }
}

输出。

The hash-code values is: 423132

**参考资料: ** https://docs.oracle.com/javase/10/docs/api/java/text/NumberFormat.html#hashCode()

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程