📜  Java中的 BigInteger hashCode() 方法

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

Java中的 BigInteger hashCode() 方法

Java.math.BigInteger.hashCode()方法返回此 BigInteger 的哈希码。如果对象没有改变,哈希码总是相同的。
Hashcode 是 JVM 在创建对象时生成的唯一代码。我们可以使用 hashcode 对 hashtable、hashmap 等哈希相关算法执行一些操作。我们可以使用该唯一代码搜索对象。

句法:

public int hashCode()

返回:该方法返回一个整数值,该整数值表示此 BigInteger 的 hashCode 值。

例子:

Input: BigInteger1=32145
Output: 32145
Explanation: BigInteger1.hashCode()=32145.

Input: BigInteger1=7613721467324 
Output: -1255493552
Explanation: BigInteger1.hashCode()=-1255493552.

示例 1:以下程序说明 BigInteger 类的 hashCode() 方法

// Java program to demonstrate 
// hashCode() method of BigInteger
  
import java.math.BigInteger;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Creating 2 BigInteger objects
        BigInteger b1, b2;
  
        b1 = new BigInteger("32145");
        b2 = new BigInteger("7613721467324");
  
        // apply hashCode() method
        int hashCodeOfb1 = b1.hashCode();
        int hashCodeOfb2 = b2.hashCode();
  
        // print hashCode
        System.out.println("hashCode of "
                           + b1 + " : " + hashCodeOfb1);
        System.out.println("hashCode of "
                           + b2 + " : " + hashCodeOfb2);
    }
}
输出:
hashCode of 32145 : 32145
hashCode of 7613721467324 : -1255493552

示例 2:当两个 bigInteger 具有相同的值时

// Java program to demonstrate 
// hashCode() method of BigInteger
  
import java.math.BigInteger;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Creating 2 BigInteger objects
        BigInteger b1, b2;
  
        b1 = new BigInteger("4326516236135");
        b2 = new BigInteger("4326516236135");
  
        // apply hashCode() method
        int hashCodeOfb1 = b1.hashCode();
        int hashCodeOfb2 = b2.hashCode();
  
        // print hashCode
        System.out.println("hashCode of "
                           + b1 + " : " + hashCodeOfb1);
        System.out.println("hashCode of "
                           + b2 + " : " + hashCodeOfb2);
    }
}
输出:
hashCode of 4326516236135 : 1484200280
hashCode of 4326516236135 : 1484200280

参考:
BigInteger hashCode() 文档