- BigInteger - Class in java.math
-
Immutable arbitrary-precision integers.
- BigInteger(byte[]) - Constructor for class java.math.BigInteger
-
Translates a byte array containing the two's-complement binary
representation of a BigInteger into a BigInteger.
- BigInteger(int, byte[]) - Constructor for class java.math.BigInteger
-
Translates the sign-magnitude representation of a BigInteger into a
BigInteger.
- BigInteger(String, int) - Constructor for class java.math.BigInteger
-
Translates the String representation of a BigInteger in the
specified radix into a BigInteger.
- BigInteger(String) - Constructor for class java.math.BigInteger
-
Translates the decimal String representation of a BigInteger into a
BigInteger.
- BigInteger(int, Random) - Constructor for class java.math.BigInteger
-
Constructs a randomly generated BigInteger, uniformly distributed over
the range 0 to (2numBits
- 1), inclusive.
- bitCount() - Method in class java.math.BigInteger
-
Returns the number of bits in the two's complement representation
of this BigInteger that differ from its sign bit.
- bitLength() - Method in class java.math.BigInteger
-
Returns the number of bits in the minimal two's-complement
representation of this BigInteger, excluding a sign bit.