我正在使用 BigInteger 类随机生成一个大素数,但我不断得到负值。怎么可能忽略所有的负回报?我应该如何使它成为一个固定的 10 号码?
public class Gen{
public static void main(String[] args) throws IOException {
Random rand = new SecureRandom();
BigInteger.probablePrime(100, rand);
System.out.println(BigInteger.probablePrime(100, rand).longValue());
}
}