BigInteger.or(BigInteger val) has the following syntax.
public BigInteger or(BigInteger val)
In the following code shows how to use BigInteger.or(BigInteger val) method.
/* ww w.j a v a 2 s . c om*/ 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("8"); // perform or operation on bi1, bi2 BigInteger bi3 = bi1.or(bi2); System.out.println(bi3); } }
The code above generates the following result.