java.math.BigDecimal.intValue()是一个内置函数,可将BigDecimal转换为整数值。此函数丢弃此BigDecimal的任何小数部分。如果转换结果太大而无法表示为整数值,则该函数仅返回低阶32位。
用法:
public int intValue()
参数:此函数不接受任何参数。
返回值:此函数返回此BigDecimal的整数值。
例子:
Input : 19878124.176 Output : 19878124 Input : "721111" Output : 721111
以下示例程序旨在说明java.math.BigDecimal.intValue()方法:
示例1:
// Java program to illustrate
// intValue() method
import java.math.*;
import java.io.*;
class GFG {
public static void main(String[] args)
{
// Creating 2 BigDecimal Objects
BigDecimal b1, b2;
// Assigning values to b1, b2
b1 = new BigDecimal("19878124.176");
b2 = new BigDecimal("721111");
// Displaying their respective Integer Values
System.out.println("The Integer Value of " + b1 + " is "
+ b1.intValue());
System.out.println("The Integer Value of " + b2 + " is "
+ b2.intValue());
}
}
输出:
The Integer Value of 19878124.176 is 19878124 The Integer Value of 721111 is 721111
注意:此函数在转换过程中可能会丢失有关此BigDecimal值较大的整体大小和精度的信息。结果,可能会返回带有相反符号的结果。
示例2:此程序说明了该函数返回带有相反符号的结果的情况。
// Java program to illustrate
// intValue() method
import java.math.*;
import java.io.*;
class GFG {
public static void main(String[] args)
{
// Creating 2 BigDecimal Objects
BigDecimal b1, b2;
// Assigning values to b1, b2
b1 = new BigDecimal("1987812417600");
b2 = new BigDecimal("3567128439701");
// Displaying their respective Integer Values
System.out.println("The Integer Value of " + b1 + " is " + b1.intValue());
System.out.println("The Integer Value of " + b2 + " is " + b2.intValue());
}
}
输出:
The Integer Value of 1987812417600 is -757440448 The Integer Value of 3567128439701 is -1989383275
参考: https://docs.oracle.com/javase/7/docs/api/java/math/BigDecimal.html#intValue()
相关用法
- Java Integer intValue()用法及代码示例
- Java BigInteger intValue()用法及代码示例
- Java Level intValue()用法及代码示例
- Java AtomicInteger intValue()用法及代码示例
- Java Float intValue()用法及代码示例
- Java DoubleAccumulator intValue()用法及代码示例
- Java Number.intValue()用法及代码示例
- Java Double intValue()用法及代码示例
- Java LongAccumulator intValue()用法及代码示例
- Java DoubleAdder intValue()用法及代码示例
- Java Byte intValue()用法及代码示例
- Java AtomicLong intValue()用法及代码示例
- Java LongAdder intValue()用法及代码示例
- Java BigDecimal min()用法及代码示例
- Java BigDecimal plus()用法及代码示例
注:本文由纯净天空筛选整理自RICHIK BHATTACHARJEE大神的英文原创作品 BigDecimal intValue() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。