我是靠谱客的博主 可爱小霸王,最近开发中收集的这篇文章主要介绍BigInteger 类 常用方法总结,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

.valueOf(parament)

//将参数转换为指定的类型
int a=3; 
BigInteger b=BigInteger.valueOf(a);

.add()

//大整数相加
BigInteger a=new BigInteger(“23”);
BigInteger b=new BigInteger(“34”);
a.add(b);

.subtract(); //相减
.multiply(); //相乘
.divide(); //相除取整
.remainder(); //取余
.pow();  //a.pow(b)=a^b
.gcd();  //最大公约数
.abs(); //绝对值
.negate(); //取反数
.mod(); //a.mod(b)=a%b=a.remainder(b);
.max(); //min();
.boolean equals(); //是否相等
.compareTo(BigInteger val); //Returns:-1, 0 , 1, 对应小于, 等于或大于

//构造
BigInteger(String val); //将指定字符串转换为十进制表示形式
BigInteger(String val,int radix); //将指定基数的 BigInteger 的字符串表示形式转换为 BigInteger

//基本常量
A=BigInteger.ONE   //1
B=BigInteger.TEN   //10
C=BigInteger.ZERO  //0



最后

以上就是可爱小霸王为你收集整理的BigInteger 类 常用方法总结的全部内容,希望文章能够帮你解决BigInteger 类 常用方法总结所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部