Java Data Type Tutorial - 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.

//from  w w w.  j  a v a 2 s .  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.