00075_BigInteger

Posted Lamfai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了00075_BigInteger相关的知识,希望对你有一定的参考价值。

1、Java中long型为最大整数类型,对于超过long型的数据如何去表示呢.在Java的世界中,超过long型的整数已经不能被称为整数了,它们被封装成BigInteger对象.在BigInteger类中,实现四则运算都是方法来实现,并不是采用运算符。

2、BigInteger类的构造方法  

  

3、四则运算

 1 public static void main(String[] args) {
 2         //大数据封装为BigInteger对象
 3           BigInteger big1 = new BigInteger("12345678909876543210");
 4           BigInteger big2 = new BigInteger("98765432101234567890");
 5           //add实现加法运算
 6           BigInteger bigAdd = big1.add(big2);
 7           //subtract实现减法运算
 8           BigInteger bigSub = big1.subtract(big2);
 9           //multiply实现乘法运算
10           BigInteger bigMul = big1.multiply(big2);
11           //divide实现除法运算
12           BigInteger bigDiv = big2.divide(big1);
13 }

 

以上是关于00075_BigInteger的主要内容,如果未能解决你的问题,请参考以下文章

vbscript CD-英特尔-SA-00075v3-DET

利用java中的BigInteger实现进制转换

Cryptography Reloaded UVALive - 4353(BigInteger)

java bigInteger +1 加常数

汇编:增加2(或更大数字)而不破坏ADC循环中的CF?

这些 C++ 代码片段有啥作用?