当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java BigDecimal shortValueExact()用法及代码示例


java.math.BigDecimal.shortValueExact()是Java中的一种内置方法,可将BigDecimal转换为简短形式,以检查丢失的信息。如果此BigDecimal的分数部分非零或超出可能的范围,则可能会抛出ArithmeticException。

用法:

public short shortValueExact()

参数:该方法不接受任何参数。


返回值:此方法返回BigDecimal对象的short值。

以下示例程序旨在说明上述方法:
示例1:

// Program to demonstrate shortValueExact() method of BigDecimal  
  
import java.math.*; 
  
public class gfg { 
  
    public static void main(String[] args) 
    { 
  
        BigDecimal b1 = new BigDecimal("457"); 
        BigDecimal b2 = new BigDecimal("4785"); 
  
        // Assigning the short value of BigDecimal objects b1 and b2 
        // to short s1, s2 respectively 
        short s1 = b1.shortValueExact(); 
        short s2 = b2.shortValueExact(); 
  
        // Printing s1, s2 values 
        System.out.println("Exact short value of " + b1 + " is " + s1); 
        System.out.println("Exact short value of " + b2 + " is " + s2); 
    } 
}
输出:
Exact short value of 457 is 457
Exact short value of 4785 is 4785

示例2:

// Program to demonstrate shortValueExact() method of BigDecimal  
  
  
import java.math.*; 
  
public class gfg { 
  
    public static void main(String[] args) 
    { 
  
        BigDecimal b1 = new BigDecimal("127"); 
        BigDecimal b2 = new BigDecimal("1455"); 
  
        // assign the short value of BigDecimal objects b1 and b2 
        // to short s1, s2 respectively 
        short s1 = b1.shortValueExact(); 
        short s2 = b2.shortValueExact(); 
  
        // print s1, s2 values 
        System.out.println("Exact short value of " + b1 + " is " + s1); 
        System.out.println("Exact short value of " + b2 + " is " + s2); 
    } 
}
输出:
Exact short value of 127 is 127
Exact short value of 1455 is 1455

参考: https://docs.oracle.com/javase/7/docs/api/java/math/BigDecimal.html#shortValueExact()



相关用法


注:本文由纯净天空筛选整理自Twinkl Bajaj大神的英文原创作品 BigDecimal shortValueExact() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。