JAVA中怎么把int型数据转为BigInteger型数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA中怎么把int型数据转为BigInteger型数据相关的知识,希望对你有一定的参考价值。

1、创建java类,TestBigInteger.java;

2、编写java代码;

public class TestBigInteger

public static void main(String[] args)

BigInteger bint = new BigInteger(String.valueOf(123));


3、编写输出结果代码;

System.out.println(bint);

System.out.println(bint.getClass());

4、执行结果,类型为‘class java.math.BigInteger’;

参考技术A

1.打开MyEclipse,新建Java工程和Java脚本,在主函数中定义整型变量number,赋值7788。

2.添加字符串变量medium,将number+""转换为字符串类型。

3.新建类变量BigInteger bi,赋值new BigInteger(medium),表示变量实际类型是new BigInteger(medium),用于接收medium数据。

4.写下输出语句"System.out.print(bi);",点击Run按钮测试。

参考技术B 先把int转成String 然后用这个String作为BigInteger的构造方法的值穿进去就行了

BigInteger b = new BigInteger("100000000");
这样就行本回答被提问者和网友采纳
参考技术C int i = 0;
BigInteger bitInt = new BitInteger(String.valueOf(i));
参考技术D BigInteger 的范围要比Integer 大
Integer 最大就是2147483648
所以不能把BigInteger 转Integer
反之则可以

kettle怎么把string转换成int类型

参考技术A 用字段选择-元数据里设置,或者用JS脚本

以上是关于JAVA中怎么把int型数据转为BigInteger型数据的主要内容,如果未能解决你的问题,请参考以下文章

java中,怎么讲一个double型数字,转化为一个String字符串?

c++ 如何把一个int转为char*

菜鸟发问:怎样把float型转变成整形

c#中怎么把string类型转化为Url型

kettle怎么把string转换成int类型

java中如何把string类型转换成int类型