📜  Java中的字符集 hashCode() 方法及示例

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

Java中的字符集 hashCode() 方法及示例

hashCode()方法是Java.nio.charset的内置方法,返回任何给定字符集的计算哈希码。

语法

public final int hashCode()

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

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

下面是上述函数的实现:

方案一:

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

方案二:

// 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: Java/nio/charset/Charset.html#hashCode()