📜  Java中的构造函数 hashCode() 方法及示例

📅  最后修改于: 2022-05-13 01:55:12.397000             🧑  作者: Mango

Java中的构造函数 hashCode() 方法及示例

Java.lang.reflect.Constructor 类hashCode()方法用于返回此 Constructor 对象的哈希码。如果构造的对象没有改变,哈希码总是相同的。 Hashcode 是 JVM 在创建类对象时生成的唯一代码。我们可以使用散列码对散列相关算法(如散列表、散列图等)执行一些操作。我们可以使用该唯一码搜索对象。

句法:

public int hashCode()

参数:此方法不接受任何内容。

Return :此方法返回此对象的哈希码整数值

下面的程序说明了 hashCode() 方法:
方案一:

// 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

方案二:

// 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: Java()