Java BigInteger .nextProbablePrime ()
Syntax
BigInteger.nextProbablePrime() has the following syntax.
public BigInteger nextProbablePrime()
Example
In the following code shows how to use BigInteger.nextProbablePrime() method.
// w ww .ja v a 2s . co m
import java.math.BigInteger;
public class Main {
public static void main(String[] args) {
BigInteger bi1 = new BigInteger("20");
// assign nextProbablePrime value of bi1 to bi2
BigInteger bi2 = bi1.nextProbablePrime();
System.out.println(bi2);
}
}
The code above generates the following result.