Java Charset hashCode()方法及示例

Java Charset hashCode()方法及示例

hashCode() 方法是 java.nio.charset 的一个内置方法,用于返回任何指定字符集的计算哈希码。

语法:

public final int hashCode()

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

返回值 :该函数返回为字符集计算的哈希码。

下面是上述函数的实现。

程序1 :

// Java program to demonstrate
// the above function
import java.nio.charset.Charset;
import java.util.Iterator;
import java.util.Map;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Gets the charset
        Charset first = Charset.forName("ISO-2022-CN");
  
        // Prints the hash-code
        System.out.println("The hash code for ISO-2022-CN is " + first.hashCode());
    }
}

输出:

The hash code for ISO-2022-CN is 1450311218

程序2

// Java program to demonstrate
// the above function
import java.nio.charset.Charset;
import java.util.Iterator;
import java.util.Map;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Gets the charset
        Charset first = Charset.forName("x-windows-949");
  
        // Prints the hash-code
        System.out.println("The hash code for x-windows-949 is " + first.hashCode());
    }
}

输出:

The hash code for x-windows-949 is -1698752417

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Java 参考指南