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