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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。