码迷,mamicode.com
首页 > 其他好文 > 详细

BiggerInteger类

时间:2018-04-19 01:54:39      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:src   main   print   sys   需要   inf   size   alt   demo   


java.math.BigInteger(需要导包)
1.BigInteger构造方法
*
public BigInteger(String val)
将 BigInteger 的十进制字符串表示形式转换为 BigInteger。
eg:
public class BigIntegerDemo {
    public static void main(String[] args) {
        String n = Integer.MAX_VALUE+"";
        BigInteger big_n = new BigInteger(n);
        System.out.println(big_n);    //2147483647    
    }
}

2.BigInteger运算
技术分享图片

 

 




BiggerInteger类

标签:src   main   print   sys   需要   inf   size   alt   demo   

原文地址:https://www.cnblogs.com/leo9257/p/8878793.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!