gpt4 book ai didi

java - 如何指定具有最大位数的 BigInteger 类型的 BigInteger?

转载 作者:行者123 更新时间:2023-11-29 06:26:56 30 4
gpt4 key购买 nike

我知道 BigInteger 有一个构造函数,您可以在其中通过传递新 BigInteger 的最大 bitLength 和一个随机参数来生成随机 BigInteger:

BigInteger(int numBits, Random rnd)

如何生成一个随机的 BitInteger,其中 numBits 的类型是 BitInteger 而不是 int?注意:我不想执行 myBitInteger.intValue()

最佳答案

你不能。没有采用 BigInteger 位数的构造函数。

为什么不呢? BigInteger 不会在内部将位数存储为大整数。它拥有 int 位数,反射(reflect)在公共(public) API 中的设计决策:

BigInteger(int numBits, Random rnd);
int bitCount();
int bitLength();
static BigInteger probablePrime(int bitLength, Random rnd);

关于java - 如何指定具有最大位数的 BigInteger 类型的 BigInteger?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53545011/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com