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


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



相关用法


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