Java BigInteger.min(BigInteger val)
Syntax
BigInteger.min(BigInteger val) has the following syntax.
public BigInteger min(BigInteger val)
Example
In the following code shows how to use BigInteger.min(BigInteger val) method.
/*from w w w .j a v a 2 s.c o m*/
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 min value of bi1, bi2 to bi3
BigInteger bi3 = bi1.min(bi2);
System.out.println(bi3);
}
}
The code above generates the following result.