Java の BigInteger クラスがわかりません。助けてくれませんか、、、公開
public BigInteger(int bitLength, int 確かさ, Random rnd)
bitLength パラメータはどのように彼の説明でしたか?
ありがとうございます
Java の BigInteger クラスがわかりません。助けてくれませんか、、、公開
public BigInteger(int bitLength, int 確かさ, Random rnd)
bitLength パラメータはどのように彼の説明でしたか?
ありがとうございます
このコンストラクターBigInteger
は、指定された長さのランダムを作成します。
bitLength - bitLength of the returned BigInteger.
certainty - a measure of the uncertainty that the caller is willing to tolerate.
The probability that the new BigInteger represents a prime number will
exceed (1 - 1/2certainty). The execution time of this constructor is
proportional to the value of this parameter.
rnd - source of random bits used to select candidates to be tested for primality.