1.Java中long型为最大整数类型,对于超过long型的数据如何去表示呢.在Java的世界中,超过long型的整数已经不能被称为整数了,它们被封装成BigInteger对象.在BigInteger类中,实现四则运算都是方法来实现,并不是采用运算符. 2.BigInteger类的构造方法 3.四则运算 public static void main(String[] args) { //大数据封装为BigInteger对象 BigInteger big1 = new BigInteger("1…