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()