El método java.math.BigInteger.andNot(BigInteger val) devuelve un BigInteger cuyo valor es (this & ~val) donde this es el BigInteger actual con el que se usa la función y val es el bigInteger pasado a la función como parámetro . Este método, que es equivalente a and(val.not()), se proporciona para facilitar las operaciones de enmascaramiento. Este método devuelve un BigInteger negativo si y solo si es negativo y val es positivo. El método andNOT() aplica la operación AND bit a bit sobre el bigInteger actual y el valor NOT del bigInteger pasado como parámetro.
Sintaxis:
public BigInteger andNot(BigInteger val)
Parámetros: el método acepta un parámetro de tipo val BigInteger y hace referencia al valor que se debe complementar y hacer AND con el BigInteger actual.
Valor devuelto: el método se usa para devolver (this & ~val) donde this al BigInteger actual con el que se usa la función y val es el bigInteger pasado a la función como parámetro.
Ejemplos:
Input: value1 = 2300, value2 = 3400 Output: 180 Explanation: Binary of 2300 = 100011111100 Not of 3400 in binary signed 2's complement is 1111001010110111 AND of 100011111100 and 1111001010110111= 10110100 Decimal of 10110100 = 180. Input: value1 = 432045, value2 = 321076 Output: 135561
El siguiente programa ilustra el método andNot() de BigInteger.
/* *Program Demonstrate notNot() 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 andNot() method to find this & ~val BigInteger finalvalue = biginteger.andNot(val); String result = "Result of andNot operation between " + biginteger + " and "+ val + " is " + finalvalue; // Print the result System.out.println(result); } }
Result of andNot operation between 2300 and 3400 is 180
Referencia: https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#andNot(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