Java.math.BigInteger.valueOf()方法範例


java.math.BigInteger.valueOf(long val) 返回一個BigInteger,其值等於指定long。這種“靜態工廠方法”優先於(long)建構函式提供的,因為它允許為經常使用的BigIntegers重用。

宣告

以下是java.math.BigInteger.valueOf()方法的宣告

public static BigInteger valueOf(long val)

引數

  • val - 該BigInteger返回的值

返回值

此方法返回一個BigInteger,使用指定的值。

異常

  • NA

例子

下面的例子顯示math.BigInteger.valueOf()方法的用法

package com.yiibai;

import java.math.*;

public class BigIntegerDemo {

public static void main(String[] args) {

	// create a BigInteger object
	BigInteger bi;

	// create and assign value to Long object
	Long l = new Long(123456789L);

	// assign the biginteger value of l to bi
        // static method is called using class name
	bi = BigInteger.valueOf(l);

	String str = "BigIntger value of Long " + l + " is " +bi;

	// print bi value
	System.out.println( str );
   }
}

讓我們編譯和執行上面的程式,這將產生以下結果:

BigIntger value of Long 123456789 is 123456789