BigInteger: andNot(BigInteger val) : BigInteger « java.math « Java by API
- Java by API
- java.math
- BigInteger
BigInteger: andNot(BigInteger val)
import java.math.BigInteger;
public class Main {
public static void main(String[] argv) throws Exception {
byte[] bytes = new byte[] { 0x1, 0x00, 0x00 };
BigInteger bi = new BigInteger(bytes);
bi = bi.andNot(bi);
}
}
Related examples in the same category