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


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


先決條件:BigInteger基礎

java.math.BigInteger.or(BigInteger val)方法用於對兩個BigInteger進行按位或運算。一個BigInteger傳入參數,另一個傳入該函數。如果與該函數一起使用的BigIntegers之一為負,則此方法返回負數。 BigInteger的OR()方法對作為參數傳遞的當前bigInteger和bigInteger應用按位或運算。

用法:


public BigInteger or(BigInteger val)

參數:該方法接受BigInteger類型的一個參數val,表示與此BigInteger進行或運算的值。

返回值:該方法返回帶有bigInteger val的當前bigInteger的bitwise-OR。

例:

Input: value1 = 2300 , value2 = 3400
Output: 3580
Explanation:
Binary of 2300 = 100011111100
Binary of 3400 = 110101001000
OR of 100011111100 and 110101001000 = 110111111100
Decimal of 110111111100 = 3580.

Input: value1 = 54298 , value2 = 64257
Output: 65307

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

/* 
*Program Demonstrate or() method of BigInteger  
*/
import java.math.*; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Creates 2 BigInteger objects 
        BigInteger biginteger = new BigInteger("2300"); 
        BigInteger val = new BigInteger("3400"); 
  
        // Call or() method to find (biginteger | val) 
        BigInteger biggerInteger = biginteger.or(val); 
  
        String result = "Result of OR operation between " + biginteger + " and "
                        + val + " is " + biggerInteger; 
  
        // Print result 
        System.out.println(result); 
    } 
}
輸出:
Result of OR operation between 2300 and 3400 is 3580

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



相關用法


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