public static class BigInteger extends Object
Since the class was modeled to offer all the functionality as the
Integer
class does, it provides even methods that operate bitwise on
a two's complement representation of large integers. Note however that the
implementations favors an internal representation where magnitude and sign
are treated separately. Hence such operations are inefficient and should be
discouraged. In simple words: Do NOT implement any bit fields based on
BigInteger.
Copyright © 2018. All rights reserved.