java.math.BigInteger.hashCode()方法返回此BigInteger的哈希碼。如果對象不變,則哈希碼始終相同。
哈希碼是由JVM在對象創建時生成的唯一代碼。我們可以使用哈希碼對與哈希相關的算法執行一些操作,例如哈希表,哈希圖等等。我們可以使用該唯一代碼搜索對象。
用法:
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() Docs
相關用法
- Java BigInteger pow()用法及代碼示例
- Java BigInteger mod()用法及代碼示例
- Java BigInteger xor()用法及代碼示例
- Java BigInteger abs()用法及代碼示例
- Java BigInteger or()用法及代碼示例
- Java BigInteger not()用法及代碼示例
- Java BigInteger and()用法及代碼示例
- Java BigInteger intValue()用法及代碼示例
- Java BigInteger add()用法及代碼示例
- Java BigInteger gcd()用法及代碼示例
- Java BigInteger setBit()用法及代碼示例
- Java BigInteger longValue()用法及代碼示例
- Java BigInteger toByteArray()用法及代碼示例
- Java BigInteger remainder()用法及代碼示例
- Java BigInteger clearBit()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 BigInteger hashCode() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。