标签:减法 方法 bst pow valueof 类型 integer int 初始
BigInteger: 对大整数类进行操作,超过long能存储的范围
BigDecimal:对高精度小数进行操作
BigInteger bg = new BigInteger("0"); 初始化 并赋值为0
BigInteger类只能与BigInteger类 进行操作
bg.add( ); 加法
bg.substract( ); 减法
bg.multiply( ); 乘法
bg.divide( ); 除法
bg.sqrt( ); 开平方
bg.pow( ); 平方
BigInteger.valueOf( ); 将某类型转化成,BigInteger类型
标签:减法 方法 bst pow valueof 类型 integer int 初始
原文地址:https://www.cnblogs.com/xiaozhangblogs/p/14929741.html