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


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


先決條件:BigInteger基礎
xor(BigInteger val)方法返回兩個bigInteger的bitwise-XOR。當且僅當當前bigInteger和bigInteger中的一個恰好傳遞了參數ID負數時,此方法才返回負數BigInteger。 BigInteger類的xor()方法在作為參數傳遞的當前BigInteger和BigInteger上應用bitwise-XOR操作。

用法:

public BigInteger xor(BigInteger val)

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


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

例子:

Input: value1 = 2300 , value2 = 3400
Output: 1460
Explanation:
Binary of 2300 = 100011111100
Binary of 3400 = 110101001000
XOR of 100011111100 and 110101001000 = 10110110100
Decimal of 10110110100 = 1460.

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

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

/* 
*Program Demonstrate xor() method of BigInteger  
*/
import java.math.*; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Create 2 BigInteger objects 
        BigInteger biginteger = new BigInteger("2300"); 
        BigInteger val = new BigInteger("3400"); 
  
        // Call xor() method to find this ^ val 
        BigInteger biggerInteger = biginteger.xor(val); 
  
        String result = "Result of XOR operation between " + biginteger + " and "
                        + val + " is " + biggerInteger; 
  
        // Print result 
        System.out.println(result); 
    } 
}

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



相關用法


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