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