从 int 值创建 BigInteger 实例的最有效方法是什么?

发布于 2024-08-29 11:49:13 字数 305 浏览 5 评论 0原文

我有一个带有 BigInteger 参数的方法(在第 3 方库中):

public void setValue (BigInteger value) { ... }

我不需要“全部功能”,我只需要使用整数。那么,如何将整数传递给这个方法呢?我的解决方案是从 int 值获取字符串值,然后从字符串创建 BigInteger:

int i = 123;
setValue (new BigInteger ("" + i));

还有其他(推荐)方法可以做到这一点吗?

I have a method (in 3rd-party library) with BigInteger parameter:

public void setValue (BigInteger value) { ... }

I don't need 'all its power', I only need to work with integers. So, how can I pass integers to this method? My solution is to get string value from int value and then create BigInteger from string:

int i = 123;
setValue (new BigInteger ("" + i));

Are there any other (recommended) ways to do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

喜你已久 2024-09-05 11:49:13
BigInteger.valueOf(i);
BigInteger.valueOf(i);
深海里的那抹蓝 2024-09-05 11:49:13

使用静态方法BigInteger.valueOf(long number)int 值将自动提升为 long

Use the static method BigInteger.valueOf(long number). int values will be promoted to long automatically.

荒岛晴空 2024-09-05 11:49:13

您可以使用此静态方法:BigInteger.valueOf(long val)

You can use this static method: BigInteger.valueOf(long val)

夏雨凉 2024-09-05 11:49:13
setValue(BigInteger.valueOf(123L));
setValue(BigInteger.valueOf(123L));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文