当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。