声明为 BigInteger 的 java.math 中的字段
static BigInteger BigInteger. ONE
BigInteger 的常量 1。
static BigInteger BigInteger. TEN
BigInteger 的常量 10。
static BigInteger BigInteger. ZERO
BigInteger 的常量 0。 返回 BigInteger 的 java.math 中的方法
BigInteger BigInteger. abs ()
返回其值是此 BigInteger 的绝对值的 BigInteger。
BigInteger BigInteger. add (BigInteger val)
返回其值为 (this + val) 的 BigInteger。
BigInteger BigInteger. and (BigInteger val)
返回其值为 (this & val) 的 BigInteger。
BigInteger BigInteger. andNot (BigInteger val)
返回其值为 (this & ~val) 的 BigInteger。 BigInteger BigInteger. clearBit (int n)
返回其值与清除了指定位的此 BigInteger 等效的 BigInteger。 BigInteger BigInteger. divide (BigInteger val)
返回其值为 (this / val) 的 BigInteger。 BigInteger [] BigInteger. divideAndRemainder (BigInteger val)
返回包括 (this / val) 后跟 (this % val) 的两个 BigInteger 的数组。
BigInteger BigInteger. flipBit (int n)
返回其值与对此 BigInteger 进行指定位翻转后的值等效的 BigInteger。 BigInteger BigInteger. gcd (BigInteger val)
返回一个 BigInteger。其值是 abs(this) 和 abs(val) 的最大公约数。
BigInteger BigInteger. max (BigInteger val)
返回此 BigInteger 和 val 的最大值。
BigInteger BigInteger. min (BigInteger val)
返回此 BigInteger 和 val 的最小值。
BigInteger BigInteger. mod (BigInteger m)
返回其值为 (this mod m ) 的 BigInteger。
BigInteger BigInteger. modInverse (BigInteger m)
返回其值为 (this-1 mod m) 的 BigInteger。
BigInteger BigInteger. modPow (BigInteger exponent, BigInteger m)
返回其值为 (thisexponent mod m) 的 BigInteger。 BigInteger BigInteger. multiply (BigInteger val)
返回其值为 (this * val) 的 BigInteger。
BigInteger BigInteger. negate ()
返回其值是 (-this) 的 BigInteger。 BigInteger BigInteger. nextProbablePrime ()
返回大于此 BigInteger 的可能为素数的第一个整数。
BigInteger BigInteger. not ()
返回其值为 (~this) 的 BigInteger。 BigInteger BigInteger. or (BigInteger val)
返回其值为 (this | val) 的 BigInteger。
BigInteger BigInteger. pow (int exponent)
返回其值为 (thisexponent ) 的 BigInteger。
static BigInteger BigInteger. probablePrime (int bitLength, Random rnd)
返回有可能是素数的、具有指定长度的正 BigInteger。
BigInteger BigInteger. remainder (BigInteger val)
返回其值为 (this % val) 的 BigInteger。
BigInteger BigInteger. setBit (int n)
返回其值与设置了指定位的此 BigInteger 等效的 BigInteger。 BigInteger BigInteger. shiftLeft (int n)
返回其值为 (this << n) 的 BigInteger。
BigInteger BigInteger. shiftRight (int n)
返回其值为 (this >> n) 的 BigInteger。
BigInteger BigInteger. subtract (BigInteger val)
返回其值为 (this - val) 的 BigInteger。
BigInteger BigDecimal. toBigInteger ()
将此 BigDecimal 转换为 BigInteger 。
BigInteger BigDecimal. toBigIntegerExact ()
将此 BigDecimal 转换为 BigInteger ,以检查丢失的信息。
BigInteger BigDecimal. unscaledValue ()
返回其值为此 BigDecimal 的非标度值 的 BigInteger 。
static BigInteger BigInteger. valueOf (long val)
返回其值等于指定 long 的值的 BigInteger。
BigInteger BigInteger. xor (BigInteger val)
返回其值为 (this ^ val) 的 BigInteger。
參数类型为 BigInteger 的 java.math 中的方法
BigInteger BigInteger. add (BigInteger val)
返回其值为 (this + val) 的 BigInteger。
BigInteger BigInteger. and (BigInteger val)
返回其值为 (this & val) 的 BigInteger。
BigInteger BigInteger. andNot (BigInteger val)
返回其值为 (this & ~val) 的 BigInteger。
int BigInteger. compareTo (BigInteger val)
将此 BigInteger 与指定的 BigInteger 进行比較。
BigInteger BigInteger. divide (BigInteger val)
返回其值为 (this / val) 的 BigInteger。 BigInteger [] BigInteger. divideAndRemainder (BigInteger val)
返回包括 (this / val) 后跟 (this % val) 的两个 BigInteger 的数组。
BigInteger BigInteger. gcd (BigInteger val)
返回一个 BigInteger。其值是 abs(this) 和 abs(val) 的最大公约数。 BigInteger BigInteger. max (BigInteger val)
返回此 BigInteger 和 val 的最大值。
BigInteger BigInteger. min (BigInteger val)
返回此 BigInteger 和 val 的最小值。
BigInteger BigInteger. mod (BigInteger m)
返回其值为 (this mod m ) 的 BigInteger。 BigInteger BigInteger. modInverse (BigInteger m)
返回其值为 (this-1 mod m) 的 BigInteger。
BigInteger BigInteger. modPow (BigInteger exponent, BigInteger m)
返回其值为 (thisexponent mod m) 的 BigInteger。
BigInteger BigInteger. multiply (BigInteger val)
返回其值为 (this * val) 的 BigInteger。 BigInteger BigInteger. or (BigInteger val)
返回其值为 (this | val) 的 BigInteger。
BigInteger BigInteger. remainder (BigInteger val)
返回其值为 (this % val) 的 BigInteger。
BigInteger BigInteger. subtract (BigInteger val)
返回其值为 (this - val) 的 BigInteger。
BigInteger BigInteger. xor (BigInteger val)
返回其值为 (this ^ val) 的 BigInteger。 參数类型为 BigInteger 的 java.math 中的构造方法
BigDecimal (BigInteger val)
将 BigInteger 转换为 BigDecimal 。
BigDecimal (BigInteger unscaledVal, int scale)
将 BigInteger 非标度值和 int 标度转换为 BigDecimal 。 BigDecimal (BigInteger unscaledVal, int scale, MathContext mc)
将 BigInteger 非标度值和 int 标度转换为 BigDecimal (依据上下文设置进行舍入)。
BigDecimal (BigInteger val, MathContext mc)
将 BigInteger 转换为 BigDecimal (依据上下文设置进行舍入)。 java.util 中 BigInteger 的使用 返回 BigInteger 的 java.util 中的方法
BigInteger Scanner. nextBigInteger ()
将输入信息的下一个标记扫描为一个 BigInteger 。 BigInteger Scanner. nextBigInteger (int radix)
将输入信息的下一个标记扫描为一个 BigInteger 。 java.math 中 BigDecimal 的使用
声明为 BigDecimal 的 java.math 中的字段
static BigDecimal BigDecimal. ONE
值为 1,标度为 0。 static BigDecimal BigDecimal. TEN
值为 10,标度为 0。
static BigDecimal BigDecimal. ZERO
值为 0,标度为 0。 返回 BigDecimal 的 java.math 中的方法
BigDecimal BigDecimal. abs ()
返回 BigDecimal ,其值为此 BigDecimal 的绝对值,其标度为 this.scale() 。 BigDecimal BigDecimal. abs (MathContext mc)
返回其值为此 BigDecimal 绝对值的 BigDecimal (依据上下文设置进行舍入)。
BigDecimal BigDecimal. add (BigDecimal augend)
返回一个 BigDecimal ,其值为 (this + augend) ,其标度为 max(this.scale(), augend.scale()) 。 BigDecimal BigDecimal. add (BigDecimal augend, MathContext mc)
返回其值为 (this + augend) 的 BigDecimal (依据上下文设置进行舍入)。
BigDecimal BigDecimal. divide (BigDecimal divisor)
返回一个 BigDecimal ,其值为 (this / divisor) ,其首选标度为 (this.scale() - divisor.scale()) ;假设无法表示准确的商值(由于它有无穷的十进制扩展),则抛出 ArithmeticException 。
BigDecimal BigDecimal. divide (BigDecimal divisor, int roundingMode)
返回一个 BigDecimal ,其值为 (this / divisor) ,其标度为 this.scale() 。
BigDecimal BigDecimal. divide (BigDecimal divisor, int scale, int roundingMode)
返回一个 BigDecimal 。其值为 (this / divisor) ,其标度为指定标度。 BigDecimal BigDecimal. divide (BigDecimal divisor, int scale, RoundingMode roundingMode)
返回一个 BigDecimal ,其值为 (this / divisor) ,其标度为指定标度。
BigDecimal BigDecimal. divide (BigDecimal divisor, MathContext mc)
返回其值为 (this / divisor) 的 BigDecimal (依据上下文设置进行舍入)。
BigDecimal BigDecimal. divide (BigDecimal divisor, RoundingMode roundingMode)
返回一个 BigDecimal ,其值为 (this / divisor) 。其标度为 this.scale() 。
BigDecimal [] BigDecimal. divideAndRemainder (BigDecimal divisor)
返回由两个元素组成的 BigDecimal 数组,该数组包括 divideToIntegralValue 的结果,后跟对两个操作数计算所得到的 remainder 。 BigDecimal [] BigDecimal. divideAndRemainder (BigDecimal divisor, MathContext mc)
返回由两个元素组成的 BigDecimal 数组,该数组包括 divideToIntegralValue 的结果,后跟依据上下文设置对两个操作数进行舍入计算所得到的 remainder 的结果。 BigDecimal BigDecimal. divideToIntegralValue (BigDecimal divisor)
返回 BigDecimal 。其值为向下舍入所得商值 (this / divisor) 的整数部分。
BigDecimal BigDecimal. divideToIntegralValue (BigDecimal divisor, MathContext mc)
返回 BigDecimal 。其值为 (this / divisor) 的整数部分。 BigDecimal BigDecimal. max (BigDecimal val)
返回此 BigDecimal 和 val 的最大值。
BigDecimal BigDecimal. min (BigDecimal val)
返回此 BigDecimal 和 val 的最小值。 BigDecimal BigDecimal. movePointLeft (int n)
返回一个 BigDecimal ,它等效于将该值的小数点向左移动 n 位。
BigDecimal BigDecimal. movePointRight (int n)
返回一个 BigDecimal 。它等效于将该值的小数点向右移动 n 位。 BigDecimal BigDecimal. multiply (BigDecimal multiplicand)
返回一个 BigDecimal ,其值为 (this × multiplicand) ,其标度为 (this.scale() + multiplicand.scale()) 。
BigDecimal BigDecimal. multiply (BigDecimal multiplicand, MathContext mc)
返回其值为 (this × multiplicand) 的 BigDecimal (依据上下文设置进行舍入)。 BigDecimal BigDecimal. negate ()
返回 BigDecimal 。其值为 (-this) ,其标度为 this.scale() 。
BigDecimal BigDecimal. negate (MathContext mc)
返回其值为 (-this) 的 BigDecimal (依据上下文设置进行舍入)。 BigDecimal BigDecimal. plus ()
返回 BigDecimal ,其值为 (+this) ,其标度为 this.scale() 。
BigDecimal BigDecimal. plus (MathContext mc)
返回其值为 (+this) 的 BigDecimal (依据上下文设置进行舍入)。
BigDecimal BigDecimal. pow (int n)
返回其值为 (thisn ) 的 BigDecimal 。准确计算该幂,使其具有无限精度。 BigDecimal BigDecimal. pow (int n, MathContext mc)
返回其值为 (thisn ) 的 BigDecimal 。 BigDecimal BigDecimal. remainder (BigDecimal divisor)
返回其值为 (this % divisor) 的 BigDecimal 。
BigDecimal BigDecimal. remainder (BigDecimal divisor, MathContext mc)
返回其值为 (this % divisor) 的 BigDecimal (依据上下文设置进行舍入)。
BigDecimal BigDecimal. round (MathContext mc)
返回依据 MathContext 设置进行舍入后的 BigDecimal 。
BigDecimal BigDecimal. scaleByPowerOfTen (int n)
返回其数值等于 (this * 10n ) 的 BigDecimal。
BigDecimal BigDecimal. setScale (int newScale)
返回一个 BigDecimal ,其标度为指定值。其值在数值上等于此 BigDecimal 的值。
BigDecimal BigDecimal. setScale (int newScale, int roundingMode)
返回一个 BigDecimal ,其标度为指定值,其非标度值通过此 BigDecimal 的非标度值乘以或除以十的适当次幂来确定。以维护其总值。
BigDecimal BigDecimal. setScale (int newScale, RoundingMode roundingMode)
返回 BigDecimal ,其标度为指定值,其非标度值通过此 BigDecimal 的非标度值乘以或除以十的适当次幂来确定。以维护其总值。
BigDecimal BigDecimal. stripTrailingZeros ()
返回数值上等于此小数。但从该表示形式移除全部尾部零的 BigDecimal 。
BigDecimal BigDecimal. subtract (BigDecimal subtrahend)
返回一个 BigDecimal ,其值为 (this - subtrahend) 。其标度为 max(this.scale(), subtrahend.scale()) 。
BigDecimal BigDecimal. subtract (BigDecimal subtrahend, MathContext mc)
返回其值为 (this - subtrahend) 的 BigDecimal (依据上下文设置进行舍入)。
BigDecimal BigDecimal. ulp ()
返回此 BigDecimal 的 ulp(最后一位的单位)的大小。 static BigDecimal BigDecimal. valueOf (double val)
使用 Double.toString(double) 方法提供的 double 规范的字符串表示形式将 double 转换为 BigDecimal 。 static BigDecimal BigDecimal. valueOf (long val)
将 long 值转换为具有零标度的 BigDecimal 。
static BigDecimal BigDecimal. valueOf (long unscaledVal, int scale)
将 long 非标度值和 int 标度转换为 BigDecimal 。
參数类型为 BigDecimal 的 java.math 中的方法
BigDecimal BigDecimal. add (BigDecimal augend)
返回一个 BigDecimal ,其值为 (this + augend) ,其标度为 max(this.scale(), augend.scale()) 。
BigDecimal BigDecimal. add (BigDecimal augend, MathContext mc)
返回其值为 (this + augend) 的 BigDecimal (依据上下文设置进行舍入)。 int BigDecimal. compareTo (BigDecimal val)
将此 BigDecimal 与指定的 BigDecimal 比較。 BigDecimal BigDecimal. divide (BigDecimal divisor)
返回一个 BigDecimal ,其值为 (this / divisor) 。其首选标度为 (this.scale() - divisor.scale()) ;假设无法表示准确的商值(由于它有无穷的十进制扩展)。则抛出 ArithmeticException 。
BigDecimal BigDecimal. divide (BigDecimal divisor, int roundingMode)
返回一个 BigDecimal ,其值为 (this / divisor) ,其标度为 this.scale() 。
BigDecimal BigDecimal. divide (BigDecimal divisor, int scale, int roundingMode)
返回一个 BigDecimal ,其值为 (this / divisor) ,其标度为指定标度。 BigDecimal BigDecimal. divide (BigDecimal divisor, int scale, RoundingMode roundingMode)
返回一个 BigDecimal 。其值为 (this / divisor) 。其标度为指定标度。
BigDecimal BigDecimal. divide (BigDecimal divisor, MathContext mc)
返回其值为 (this / divisor) 的 BigDecimal (依据上下文设置进行舍入)。
BigDecimal BigDecimal. divide (BigDecimal divisor, RoundingMode roundingMode)
返回一个 BigDecimal ,其值为 (this / divisor) ,其标度为 this.scale() 。 BigDecimal [] BigDecimal. divideAndRemainder (BigDecimal divisor)
返回由两个元素组成的 BigDecimal 数组,该数组包括 divideToIntegralValue 的结果,后跟对两个操作数计算所得到的 remainder 。
BigDecimal [] BigDecimal. divideAndRemainder (BigDecimal divisor, MathContext mc)
返回由两个元素组成的 BigDecimal 数组,该数组包括 divideToIntegralValue 的结果,后跟依据上下文设置对两个操作数进行舍入计算所得到的 remainder 的结果。 BigDecimal BigDecimal. divideToIntegralValue (BigDecimal divisor)
返回 BigDecimal ,其值为向下舍入所得商值 (this / divisor) 的整数部分。
BigDecimal BigDecimal. divideToIntegralValue (BigDecimal divisor, MathContext mc)
返回 BigDecimal ,其值为 (this / divisor) 的整数部分。 BigDecimal BigDecimal. max (BigDecimal val)
返回此 BigDecimal 和 val 的最大值。
BigDecimal BigDecimal. min (BigDecimal val)
返回此 BigDecimal 和 val 的最小值。 BigDecimal BigDecimal. multiply (BigDecimal multiplicand)
返回一个 BigDecimal 。其值为 (this × multiplicand) 。其标度为 (this.scale() + multiplicand.scale()) 。
BigDecimal BigDecimal. multiply (BigDecimal multiplicand, MathContext mc)
返回其值为 (this × multiplicand) 的 BigDecimal (依据上下文设置进行舍入)。 BigDecimal BigDecimal. remainder (BigDecimal divisor)
返回其值为 (this % divisor) 的 BigDecimal 。
BigDecimal BigDecimal. remainder (BigDecimal divisor, MathContext mc)
返回其值为 (this % divisor) 的 BigDecimal (依据上下文设置进行舍入)。 BigDecimal BigDecimal. subtract (BigDecimal subtrahend)
返回一个 BigDecimal ,其值为 (this - subtrahend) ,其标度为 max(this.scale(), subtrahend.scale()) 。
BigDecimal BigDecimal. subtract (BigDecimal subtrahend, MathContext mc)
返回其值为 (this - subtrahend) 的 BigDecimal (依据上下文设置进行舍入)。 java.util 中 BigDecimal 的使用 返回 BigDecimal 的 java.util 中的方法
BigDecimal Scanner. nextBigDecimal ()
将输入信息的下一个标记扫描为一个 BigDecimal 。

JAVA中大数经常使用的函数的更多相关文章

  1. Java中的Random()函数-----转载

    Java中的Random()函数 (2013-01-24 21:01:04) 转载▼ 标签: java random 随机函数 杂谈 分类: Java 今天在做Java练习的时候注意到了Java里面的 ...

  2. Java中math类的常用函数

    Java中math类的常用函数 在 Java 中 Math 类封装了常用的数学运算,提供了基本的数学操作,如指数.对数.平方根和三角函数等 只要在源文件的顶部加上下面这行代码就不必在数学方法名和常量名 ...

  3. Java中的Random()函数

    今天在做Java练习的时候注意到了Java里面的一个随机函数——Random,刚开始只是知道这个函数具有随机取值的作用,于是上网搜索了资料一番,做了一下一些关于Random函数的总结:   Java中 ...

  4. Java中的Random()函数 【转载】

        今天在做Java练习的时候注意到了Java里面的一个随机函数——Random,刚开始只是知道这个函数具有随机取值的作用,于是上网搜索了资料一番,做了一下一些关于Random函数的总结:   J ...

  5. java中的==操作符和equals函数

    基本规则 “==”操作符的使用需要分成两种情况 判值类型相等 这一点很好理解,两个值类型代表的数值相等,则“==”表达式返回true “==”可以用与不同值类型的比较,语言会自动进行类型转换 判引用类 ...

  6. Java中大数的使用与Java入门(NCPC-Intergalactic Bidding)

    引入 前几天参加湖南多校的比赛,其中有这样一道题,需要使用高精度,同时需要排序,如果用c++实现的话,重载运算符很麻烦,于是直接学习了一发怎样用Java写大数,同时也算是学习Java基本常识了 题目 ...

  7. java中大数类的学习

    java中提供了大数类BigInteger和BigDecimal分别表示大整数类和大浮点数类,这两个类都在java.math.*包中,因此每次必须在开头处引用该包. 一.BigInteger构造函数: ...

  8. java中String字符串的替换函数:replace与replaceAll的区别

    例如有如下x的字符串 String x = "[kllkklk\\kk\\kllkk]";要将里面的“kk”替换为++,可以使用两种方法得到相同的结果 replace(CharSe ...

  9. java 中的SimpleDateFormat、Date函数以及字符串和Date类型互转

    SimpleDateFormat是一个以与语言环境有关的方式来格式化和解析日期的具体类.它允许进行格式化(日期 -> 文本).解析(文本 -> 日期)和规范化. SimpleDateFor ...

随机推荐

  1. xstream+dom4j比较对象

      package com.brmoney.util.obj2xml; import java.util.Iterator; import java.util.List; import org.dom ...

  2. [Python]Pandas简单入门(转)

    本篇文章转自 https://colab.research.google.com/notebooks/mlcc/intro_to_pandas.ipynb?hl=zh-cn#scrollTo=zCOn ...

  3. 【bzoj4668】冷战 并查集按秩合并+朴素LCA

    题目描述 1946 年 3 月 5 日,英国前首相温斯顿·丘吉尔在美国富尔顿发表“铁幕演说”,正式拉开了冷战序幕. 美国和苏联同为世界上的“超级大国”,为了争夺世界霸权,两国及其盟国展开了数十年的斗争 ...

  4. AtCoder Regular Contest 092 B Two Sequences

    题目大意 给定两个长为 $n$ 个整数序列 $a_1, \dots, a_n$ 和 $b_1, \dots, b_n$ .求所有 $a_i + b_j$($1\le i, j\le n$)的 XOR ...

  5. [ZZOJ#31]类欧几里得

    [ZZOJ#31]类欧几里得 试题描述 这是一道模板题. 给出 \(a, b, c, n\),请你求出 \(\sum_{x=0}^n{\lfloor \frac{a \cdot x + b}{c} \ ...

  6. Codeforces Round #364 (Div. 2) A 水

    A. Cards time limit per test 1 second memory limit per test 256 megabytes input standard input outpu ...

  7. nodeJS学习(2)--- NPM 使用介绍

    前言:express 推出了4.X,自己尝试了一下,出现了各种问题.结果查看了各种文档和问题,现在在这个给大家分享下4.X版本的安装. NPM 使用介绍 NPM是随同NodeJS一起安装的包管理工具, ...

  8. T-SQL百万记录中分组取最大值方法ROW_NUMBER() OVER()

    SELECT SysUserID, UserID, ROW_NUMBER() OVER(PARTITION BY UserID ORDER BY AddTime DESC) AS nums AND S ...

  9. 【HDOJ5534】Partial Tree(树,背包DP)

    题意:有一棵n个点的形态不定的树,每个度为i的节点会使树的权值增加f[i],求树的最大权值 n<=2015,0<=f[i]<=1e4 思路:对不起队友,我再强一点就能赛中出这题了 显 ...

  10. godaddy虚拟空间的伪静态配置

    原文发布时间为:2011-02-24 -- 来源于本人的百度文章 [由搬家工具导入] 只要在web.config文件的<configuration>子节点下 加入以下节点,即可实现 伪静态 ...