Java.math.BigDecimal.intValue() 方法

描述

java.math.BigDecimal.intValue()将此 BigDecimal 转换为 int。

这种转换类似于从 double 到 short 的窄化原始转换。 此 BigDecimal 的任何小数部分都将被丢弃,如果生成的"BigInteger"太大而无法放入 int,则仅返回低 32 位。

此转换可能会丢失有关此 BigDecimal 值的整体大小和精度的信息,并返回带有相反符号的结果。


声明

以下是 java.math.BigDecimal.intValue() 方法的声明。

public int intValue()

Specified by

Number 类中的 intValue。


参数

NA


返回值

该方法返回 BigDecimal 对象的 int 值。


异常

NA


示例

下面的例子展示了 math.BigDecimal.intValue() 方法的使用。

package com.tutorialspoint;

import java.math.*;

public class BigDecimalDemo {

   public static void main(String[] args) {

      // create 3 BigDecimal objects
      BigDecimal bg1, bg2;

      //Create 2 int Object
      int i1, i2;

      bg1 = new BigDecimal("1234");

      //assign a larger value to bg2
      bg2 = new BigDecimal("3383878445");

      // assign the int value of bg1 and bg2 to i1,i2 respectively
      i1 = bg1.intValue();
      i2 = bg2.intValue();

      String str1 = "int value of " + bg1 + " is " + i1;
      String str2 = "int value of " + bg2 + " is " + i2;

      // print i1,i2
      System.out.println( str1 );
      System.out.println( str2 );
   }
}

让我们编译并运行上面的程序,这将产生下面的结果 −

int value of 1234 is 1234
int value of 3383878445 is -911088851