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


Java Constructor hashCode()用法及代碼示例


java.lang.reflect.Constructor類的hashCode()方法用於返回此Constructor對象的哈希碼。如果構造的對象不變,則哈希碼始終相同。 Hashcode是在類對象創建時由JVM生成的唯一代碼。我們可以使用哈希碼對與哈希相關的算法(例如哈希表,哈希圖等)執行一些操作。我們可以使用該唯一代碼搜索對象。

用法:

public int hashCode()

參數:此方法不接受任何內容。


返回:此方法返回此對象的哈希碼整數值。

以下示例程序旨在說明hashCode()方法:
示例1:

// Java program to illustrate hashCode() method 
  
import java.lang.reflect.Constructor; 
import java.util.ArrayList; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
        // create a class object 
        Class classObj = ArrayList.class; 
  
        // get Constructor object 
        // array from class object 
        Constructor[] cons = classObj.getConstructors(); 
  
        // get hash code of this constructor class 
        int code = cons[0].hashCode(); 
  
        // print result 
        System.out.println( 
            "Hash Code count = " + code); 
    } 
}
輸出:
Hash Code count = -1114099497

示例2:

// Java program to illustrate hashCode() method 
  
import java.lang.reflect.Constructor; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
        // create a class object 
        Class classObj = String.class; 
  
        // get Constructor object 
        // array from class object 
        Constructor[] cons = classObj.getConstructors(); 
  
        // get hash code of this constructor class 
        int code = cons[0].hashCode(); 
  
        // print result 
        System.out.println( 
            "Hash Code count for string class"
            + " constructor = " + code); 
    } 
}
輸出:
Hash Code count for string class constructor = 1195259493

參考文獻: https://docs.oracle.com/javase/10/docs/api/java/lang/reflect/Constructor.html#hashCode()



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Constructor hashCode() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。