- Java.math 包擴充套件
- Java.math - 列舉
- Java.math - 討論
Java.math.BigInteger.hashCode() 方法
描述
java.math.BigInteger.hashCode() 返回此 BigInteger 的雜湊程式碼。
宣告
以下是 java.math.BigInteger.hashCode() 方法的宣告。
public int hashCode()
重寫
Object 類中的 hashCode。
引數
無
返回值
此方法返回此 BigInteger 的雜湊程式碼。
異常
無
示例
以下示例展示了 math.BigInteger.hashCode() 方法的用法。
package com.tutorialspoint;
import java.math.*;
public class BigIntegerDemo {
public static void main(String[] args) {
// create 2 BigInteger objects
BigInteger bi1, bi2;
// create 2 int objects
int i1, i2;
// assign values to bi1, bi2
bi1 = new BigInteger("12345");
bi2 = new BigInteger("923456789123");
// assign the hashcode of bi1, bi2 to i1, i2
i1 = bi1.hashCode();
i2 = bi2.hashCode();
String str1 = "HashCode of " +bi1+ " is " +i1;
String str2 = "HashCode of " +bi2+ " is " +i2;
// print i1, i2 values
System.out.println( str1 );
System.out.println( str2 );
}
}
讓我們編譯並執行以上程式,這會產生以下結果 -
HashCode of 12345 is 12345 HashCode of 923456789123 is 38827148
java_math_biginteger.htm
廣告