BigInteger class

BigInteger is an immutable class that represents a signed integer of arbitrary precision.

BigInteger declares three convenience constants: ONE, TEN, and ZERO. Each constant is the BigInteger equivalent of 1, 10, and 0.

static BigInteger ONE
The BigInteger constant one.
static BigInteger TEN
The BigInteger constant ten.
static BigInteger ZERO
The BigInteger constant zero.

Constructors

BigInteger(byte[] val)
Translates a byte array containing the two's-complement binary representation of a BigInteger into a BigInteger.
BigInteger(int signum, byte[] magnitude)
Translates the sign-magnitude representation of a BigInteger into a BigInteger.
BigInteger(int bitLength, int certainty, Random rnd)
Creates a randomly generated positive BigInteger that is probably prime, with the specified bitLength.
BigInteger(int numBits, Random rnd)
Creates a randomly generated BigInteger, uniformly distributed over the range 0 to (2numBits - 1), inclusive.
BigInteger(String val)
Translates the decimal String representation of a BigInteger into a BigInteger.
BigInteger(String val, int radix)
Translates the String representation of a BigInteger in the specified radix into a BigInteger.

Calculations

BigInteger abs()
Returns a BigInteger whose value is the absolute value of this BigInteger.
BigInteger add(BigInteger val)
Returns a BigInteger whose value is (this + val).
BigInteger divide(BigInteger val)
Returns a BigInteger whose value is (this / val).
BigInteger[] divideAndRemainder(BigInteger val)
Returns an array of two BigIntegers containing (this / val) followed by (this % val).
BigInteger gcd(BigInteger val)
Returns a BigInteger whose value is the greatest common divisor of abs(this) and abs(val).
BigInteger mod(BigInteger m)
Returns a BigInteger whose value is (this mod m).
BigInteger modInverse(BigInteger m)
Returns a BigInteger whose value is (this-1 mod m).
BigInteger modPow(BigInteger exponent, BigInteger m)
Returns a BigInteger whose value is (thisexponent mod m).
BigInteger multiply(BigInteger val)
Returns a BigInteger whose value is (this * val).
BigInteger negate()
Returns a BigInteger whose value is (-this).
BigInteger pow(int exponent)
Returns a BigInteger whose value is (thisexponent).
BigInteger subtract(BigInteger val)
Returns a BigInteger whose value is (this - val).
BigInteger remainder(BigInteger val)
Returns a BigInteger whose value is (this % val).
int signum()
Returns the signum function of this BigInteger.

Probable Prime

boolean isProbablePrime(int certainty)
Returns true if this BigInteger is probably prime, false if it's definitely composite.
BigInteger nextProbablePrime()
Returns the first integer greater than this BigInteger that is probably prime.
static BigInteger probablePrime(int bitLength, Random rnd)
Returns a positive BigInteger that is probably prime, with the specified bitLength.

Bit oriented calculation

BigInteger and(BigInteger val)
Returns a BigInteger whose value is (this & val).
BigInteger andNot(BigInteger val)
Returns a BigInteger whose value is (this & ~val).
BigInteger not()
Returns a BigInteger whose value is (~this).
BigInteger or(BigInteger val)
Returns a BigInteger whose value is (this | val).
int bitCount()
Returns the number of bits in the two's complement representation of this BigInteger that differ from its sign bit.
int bitLength()
Returns the number of bits in the minimal two's-complement representation of this BigInteger, excluding a sign bit.
BigInteger clearBit(int n)
Returns a BigInteger whose value is equivalent to this BigInteger with the designated bit cleared.
BigInteger flipBit(int n)
Returns a BigInteger whose value is equivalent to this BigInteger with the designated bit flipped.
int getLowestSetBit()
Returns the index of the rightmost (lowest-order) one bit in this BigInteger (the number of zero bits to the right of the rightmost one bit).
BigInteger setBit(int n)
Returns a BigInteger whose value is equivalent to this BigInteger with the designated bit set.
BigInteger shiftLeft(int n)
Returns a BigInteger whose value is (this << n).
BigInteger shiftRight(int n)
Returns a BigInteger whose value is (this >> n).
boolean testBit(int n)
Returns true if and only if the designated bit is set.
BigInteger xor(BigInteger val)
Returns a BigInteger whose value is (this ^ val).

Convert BigInteger to primitive types

double doubleValue()
Converts this BigInteger to a double.
float floatValue()
Converts this BigInteger to a float.
int intValue()
Converts this BigInteger to an int.
long longValue()
Converts this BigInteger to a long.
byte[] toByteArray()
Returns a byte array containing the two's-complement representation of this BigInteger.

Compare

int compareTo(BigInteger val)
Compares this BigInteger with the specified BigInteger.
boolean equals(Object x)
Compares this BigInteger with the specified Object for equality.
BigInteger max(BigInteger val)
Returns the maximum of this BigInteger and val.
BigInteger min(BigInteger val)
Returns the minimum of this BigInteger and val.

Convert to String

String toString()
Returns the decimal String representation of this BigInteger.
String toString(int radix)
Returns the String representation of this BigInteger in the given radix.

Convert to BigInteger

static BigInteger valueOf(long val)
Returns a BigInteger whose value is equal to that of the specified long.
Home 
  Java Book 
    Essential Classes  

BigInteger:
  1. BigInteger class
  2. BigInteger.TEN
  3. BigInteger.ZERO
  4. Constructor
  5. BigInteger: add(BigInteger val)
  6. BigInteger: andNot(BigInteger val)
  7. BigInteger: bitLength()
  8. BigInteger: clearBit(int n)
  9. BigInteger: divide(BigInteger val)
  10. BigInteger: doubleValue()
  11. BigInteger: flipBit(int n)
  12. BigInteger: isProbablePrime(int certainty)
  13. BigInteger: modPow(BigInteger exponent, BigInteger m)
  14. BigInteger: multiply(BigInteger val)
  15. BigInteger: negate()
  16. BigInteger: not()
  17. BigInteger: or(BigInteger val)
  18. BigInteger: probablePrime(int bitLength, Random rnd)
  19. BigInteger: pow(int exponent)
  20. BigInteger: setBit(int n)
  21. BigInteger: shiftLeft(int n)
  22. BigInteger: shiftRight(int n)
  23. BigInteger: subtract(BigInteger val)
  24. BigInteger: testBit(int n)
  25. BigInteger: toByteArray()
  26. BigInteger: toString()
  27. BigInteger: toString(int radix)
  28. BigInteger: valueOf(long val)
  29. BigInteger: xor(BigInteger val)