Java中的 BigDecimal byteValueExact() 方法
Java.math.BigDecimal.byteValueExact()是一个内置函数,它将 BigDecimal 转换为字节并检查丢失的信息。任何大于 127 或小于 -128的 BigDecimal 值都将生成异常,因为它不适合字节范围。
句法:
public byte byteValueExact()
参数:该方法不接受任何参数。
返回值:此方法返回 BigDecimal 对象的字节值。
异常:如果 BigDecimal 具有非零小数部分,即十进制值,或者超出字节结果的可能范围,则此函数将引发ArithmeticException 。
例子:
Input : 127
Output : 127
Input : -67
Output : -67
下面的程序将说明 byteValueExact()函数的使用:
方案一:
// Java program to demonstrate byteValueExact() method
import java.io.*;
import java.math.*;
public class GFG {
public static void main(String[] args)
{
// Creating a BigDecimal object
BigDecimal b;
// Creating a byte objects
byte bt;
b = new BigDecimal("47");
// Assigning the byte value of b to bt
bt = b.byteValueExact();
// Displaying the byte value
System.out.println("Exact byte value of " + b + " is " + bt);
}
}
输出:
Exact byte value of 47 is 47
方案二:
// Java program to demonstrate byteValueExact() method
import java.io.*;
import java.math.*;
public class GFG {
public static void main(String[] args)
{
// Creating a BigDecimal object
BigDecimal b;
b = new BigDecimal("-128.0564000");
System.out.println("BigDecimal value : " + b);
long roundedValue = Math.round(b.doubleValue());
System.out.println("Rounded value : " + roundedValue);
// Rounding is necessary as the fractional part is not zero
// as well as exceeding the byte range of -128 to 127
b = new BigDecimal(roundedValue);
System.out.println("Byte converted value : " + b.byteValueExact());
}
}
输出:
BigDecimal value : -128.0564000
Rounded value : -128
Byte converted value : -128
参考: https: Java/math/BigDecimal.html#byteValueExact()