Java Data Type Tutorial - Java BigInteger.max(BigInteger val)








Syntax

BigInteger.max(BigInteger val) has the following syntax.

public BigInteger max(BigInteger val)

Example

In the following code shows how to use BigInteger.max(BigInteger val) method.

//from w w  w .  j a v  a 2  s. com
import java.math.BigInteger;

public class Main {

  public static void main(String[] args) {

    BigInteger bi1 = new BigInteger("123");
    BigInteger bi2 = new BigInteger("1000");

    // assign the max value of bi1, bi2 to bi3
    BigInteger bi3 = bi1.max(bi2);

    System.out.println(bi3);
  }
}

The code above generates the following result.