位置:首页 > Java技术 > Java.math包 > Java.math.BigInteger.intValue()方法实例

Java.math.BigInteger.intValue()方法实例

java.math.BigInteger.intValue() 此BigInteger转换为int。这种转换是类似于从一个long缩小原语转换为int。

如果此BigInteger是太大,不适合在一个int,只有低32位被返回。此转换会丢失关于BigInteger值的总大小信息以及符号相反返回结果。

声明

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

public int intValue()

指定

Number类中的intValue 

参数

  • NA

返回值

此方法返回BigInteger转换为int的值。

异常

  • NA

例子

下面的例子显示math.BigInteger.intValue()方法的用法

package com.yiibai;

import java.math.*;

public class BigIntegerDemo {

public static void main(String[] args) {

        // create 2 BigInteger objects
	BigInteger bi1, bi2;

	// create 2 Integer objects
	Integer i1, i2;

	// assign values to bi1, bi2
	bi1 = new BigInteger("123");
	bi2 = new BigInteger("9888486986");

	// assign the integer values of bi1, bi2 to i1, i2
	i1 = bi1.intValue();
	i2 = bi2.intValue();

	String str1 = "Integer value of " +bi1+ " is " +i1;
	String str2 = "Integer value of " +bi2+ " is " +i2;

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

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

Integer value of 123 is 123
Integer value of 9888486986 is 1298552394