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()
相關用法
- Java Map hashCode()用法及代碼示例
- Java Set hashCode()用法及代碼示例
- Java Level hashCode()用法及代碼示例
- Java Properties hashCode()用法及代碼示例
- Java ZonedDateTime hashCode()用法及代碼示例
- Java LocalDateTime hashCode()用法及代碼示例
- Java UUID hashCode()用法及代碼示例
- Java Duration hashCode()用法及代碼示例
- Java OffsetDateTime hashCode()用法及代碼示例
- Java ChronoPeriod hashCode()用法及代碼示例
- Java ChronoLocalDate hashCode()用法及代碼示例
- Java AbstractSet hashCode()用法及代碼示例
- Java Charset hashCode()用法及代碼示例
- Java DecimalFormatSymbols hashCode()用法及代碼示例
- Java Year hashCode()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Constructor hashCode() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。