Requisito previo: Fundamentos de BigInteger
El método xor(BigInteger val) devuelve bitwise-XOR de dos bigIntegers. Este método devuelve un BigInteger negativo si y solo si exactamente uno de los bigInteger actuales y bigInteger pasados en el parámetro id negativo. El método xor() de la clase BigInteger aplica la operación XOR bit a bit sobre el BigInteger actual y el BigInteger pasado como parámetro.
Sintaxis:
public BigInteger xor(BigInteger val)
Parámetros: el método acepta un valor de parámetro de tipo BigInteger y se refiere al valor que se va a aplicar XOR con este BigInteger.
Valor devuelto: el método devuelve XOR bit a bit del BigInteger actual con el valor de BigInteger .
Ejemplos:
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
El siguiente programa ilustra el método xor() de la clase BigInteger:
/* *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); } }
Referencia: https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#xor(java.math.BigInteger)
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA