El método java.math.BigInteger.and(BigInteger val) devuelve un BigInteger cuyo valor es AND bit a bit de dos BigIntegers. Este método devuelve un número negativo si ambos BigIntegers son negativos. El método and() aplica la operación AND bit a bit sobre el bigInteger actual y el bigInteger pasado como parámetro.
Sintaxis:
public BigInteger and(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 hacer AND con el BigInteger actual.
Valor devuelto: el método devuelve el valor de AND bit a bit de dos BigIntegers.
Ejemplos:
Input: value1 = 2300, value2 = 3400 Output: 2120 Explanation: Binary of 2300 = 100011111100 Binary of 3400 = 110101001000 AND of 100011111100 and 110101001000 = 100001001000 Decimal of 100001001000 = 2120. Input: value1 = 432045, value2 = 321076 Output: 296484
El siguiente programa se usa para ilustrar el método and() de BigInteger.
Java
/* *Program Demonstrate and() 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 and() method to find this & val BigInteger biggerInteger = biginteger.and(val); String result = "Result of AND operation between " + biginteger + " and " + val + " is " + biggerInteger; // Print the result System.out.println(result); } }
Result of AND operation between 2300 and 3400 is 2120
Referencia: https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#and(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