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 }