當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java BigInteger valueOf()用法及代碼示例


java.math.BigInteger.valueOf(long value)方法返回一個BigInteger,其值等於作為參數傳遞的long的值。該方法是靜態方法,因此不需要使用此方法創建BigInteger類的對象。我們可以通過BigInteger.valueOf(long value)代碼調用此函數。

用法:

public static BigInteger valueOf(long val)

參數:此方法接受單個參數值,該值是要創建的BigInteger的值。


返回值:此方法返回BigInteger,其值等於作為參數傳遞的long的值。

以下示例程序旨在說明BigInteger類的valueOf(long value)方法:

示例1:要應用valueOf()而不創建BigInteger對象。

// Java program to demonstrate valueOf() method of BigInteger 
  
import java.math.BigInteger; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Creating 2 BigInteger objects 
        BigInteger b1, b2; 
  
        // apply valueOf() 
        b1 = BigInteger.valueOf(456782765); 
        b2 = BigInteger.valueOf(12345543); 
  
        // print result 
        System.out.println("Value of BigInteger b1: " + b1); 
        System.out.println("Value of BigInteger b2: " + b2); 
    } 
}
輸出:
Value of BigInteger b1: 456782765
Value of BigInteger b2: 12345543

示例2:通過創建BigInteger對象來應用valueOf()。

// Java program to demonstrate valueOf() method of BigInteger 
  
import java.math.BigInteger; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Creating BigInteger objects 
        BigInteger b1, b2, b3; 
  
        // create bigInteger with some value 
        b1 = new BigInteger("532721"); 
  
        // apply valueOf() 
        b2 = b1.valueOf(234567898); 
        b3 = b2.valueOf(98765432); 
  
        // print result 
        System.out.println("Value of BigInteger 1: " + b2); 
        System.out.println("Value of BigInteger 2: " + b3); 
    } 
}
輸出:
Value of BigInteger 1: 234567898
Value of BigInteger 2: 98765432

參考: https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#valueOf(long)



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 BigInteger valueOf() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。