當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。