大數處理 JAVA
阿新 • • 發佈:2019-01-05
java.math
類 BigInteger
java.lang.Object
java.lang.Number
java.math.BigInteger
- 所有已實現的介面:
- Serializable, Comparable<BigInteger>
方法摘要 | |
---|---|
BigInteger | abs()
返回其值是此 BigInteger 的絕對值的 BigInteger。 |
BigInteger | add(BigInteger val)
返回其值為 (this + val) 的 BigInteger。 |
BigInteger | and(BigInteger val) |
BigInteger | andNot(BigInteger val)
返回其值為 (this & ~val) 的 BigInteger。 |
int | bitCount()
返回此 BigInteger 的二進位制補碼錶示形式中與符號不同的位的數量。 |
int | bitLength()
返回此 BigInteger 的最小的二進位制補碼錶示形式的位數,不包括 符號位。 |
BigInteger | clearBit(int n)
返回其值與清除了指定位的此 BigInteger 等效的 BigInteger。 |
int | compareTo(BigInteger val)
將此 BigInteger 與指定的 BigInteger 進行比較。 |
BigInteger | divide(BigInteger val)
返回其值為 (this / val) 的 BigInteger。 |
BigInteger[] | divideAndRemainder(BigInteger val)
返回包含 (this / val) 後跟 (this % val) 的兩個 BigInteger 的陣列。 |
double | doubleValue()
將此 BigInteger 轉換為 double |
boolean | equals(Object x)
比較此 BigInteger 與指定的 Object 的相等性。 |
BigInteger | flipBit(int n)
返回其值與對此 BigInteger 進行指定位翻轉後的值等效的 BigInteger。 |
float | floatValue()
將此 BigInteger 轉換為 float 。 |
BigInteger | gcd(BigInteger val)
返回一個 BigInteger,其值是 abs(this) 和 abs(val) 的最大公約數。 |
int | getLowestSetBit()
返回此 BigInteger 最右端(最低位)1 位元的索引(即從此位元組的右端開始到本位元組中最右端 1 位元之間的 0 位元的位數)。 |
int | hashCode()
返回此 BigInteger 的雜湊碼。 |
int | intValue()
將此 BigInteger 轉換為 int 。 |
boolean | isProbablePrime(int certainty)
如果此 BigInteger 可能為素數,則返回 true,如果它一定為合數,則返回 false。 |
long | longValue()
將此 BigInteger 轉換為 long 。 |
BigInteger | max(BigInteger val)
返回此 BigInteger 和 val 的最大值。 |
BigInteger | min(BigInteger val)
返回此 BigInteger 和 val 的最小值。 |
BigInteger | mod(BigInteger m)
返回其值為 (this mod m) 的 BigInteger。 |
BigInteger | modInverse(BigInteger m)
返回其值為 (this-1 mod m) 的 BigInteger。 |
BigInteger | modPow(BigInteger exponent,
BigInteger m) 返回其值為 (thisexponent mod m) 的 BigInteger。 |
BigInteger | multiply(BigInteger val)
返回其值為 (this * val) 的 BigInteger。 |
BigInteger | negate()
返回其值是 (-this) 的 BigInteger。 |
BigInteger | nextProbablePrime()
返回大於此 BigInteger 的可能為素數的第一個整數。 |
BigInteger | not()
返回其值為 (~this) 的 BigInteger。 |
BigInteger | or(BigInteger val)
返回其值為 (this | val) 的 BigInteger。 |
BigInteger | pow(int exponent)
返回其值為 (thisexponent) 的 BigInteger。 |
static BigInteger | probablePrime(int bitLength,
Random rnd) 返回有可能是素數的、具有指定長度的正 BigInteger。 |
BigInteger | remainder(BigInteger val)
返回其值為 (this % val) 的 BigInteger。 |
BigInteger | setBit(int n)
返回其值與設定了指定位的此 BigInteger 等效的 BigInteger。 |
BigInteger | shiftLeft(int n)
返回其值為 (this << n) 的 BigInteger。 |
BigInteger | shiftRight(int n)
返回其值為 (this >> n) 的 BigInteger。 |
int | signum()
返回此 BigInteger 的正負號函式。 |
BigInteger | subtract(BigInteger val)
返回其值為 (this - val) 的 BigInteger。 |
boolean | testBit(int n)
當且僅當設定了指定的位時,返回 true。 |
byte[] | toByteArray()
返回一個 byte 陣列,該陣列包含此 BigInteger 的二進位制補碼錶示形式。 |
String | toString()
返回此 BigInteger 的十進位制字串表示形式。 |
String | toString(int radix)
返回此 BigInteger 的給定基數的字串表示形式。 |
static BigInteger | valueOf(long val)
返回其值等於指定 long 的值的 BigInteger。 |
BigInteger | xor(BigInteger val)
返回其值為 (this ^ val) 的 BigInteger。 |
從類 java.lang.Number 繼承的方法 |
---|
byteValue, shortValue |