从 int 值创建 BigInteger 实例的最有效方法是什么?
我有一个带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用静态方法
BigInteger.valueOf(long number)
。int
值将自动提升为long
。Use the static method
BigInteger.valueOf(long number)
.int
values will be promoted tolong
automatically.您可以使用此静态方法:
BigInteger.valueOf(long val)
You can use this static method:
BigInteger.valueOf(long val)