Java BigInteger.not()
Syntax
BigInteger.not() has the following syntax.
public BigInteger not()
Example
In the following code shows how to use BigInteger.not() method.
//w ww . jav a2 s .c o m
import java.math.BigInteger;
public class Main {
public static void main(String[] args) {
// assign values to bi1, bi2
BigInteger bi1 = new BigInteger("6");
BigInteger bi2 = new BigInteger("-6");
// perform not operation on bi1 and bi2
BigInteger bi3 = bi1.not();
BigInteger bi4 = bi2.not();
System.out.println(bi3);
System.out.println(bi4);
}
}
The code above generates the following result.