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


Java Java.math.BigDecimal.intValue()用法及代码示例



描述

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

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

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

声明

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

public int intValue()

指定者

类中的 intValueNumber

参数

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

相关用法


注:本文由纯净天空筛选整理自 Java.math.BigDecimal.intValue() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。