Requisito previo: Conceptos básicos de BigInteger
El método java.math.BigInteger.or(BigInteger val) se usa para realizar OR bit a bit de dos BigIntegers. Uno de los BigInteger se pasa en el parámetro y el otro en el que se llama a la función. Este método devuelve un número negativo si cualquiera de los BigIntegers usados con la función es negativo. El método OR() de BigInteger aplica la operación OR bit a bit sobre el bigInteger actual y el bigInteger pasado como parámetro.
Sintaxis:
public BigInteger or(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 realizar con OR con este BigInteger.
Valor devuelto: el método devuelve devuelve bit a bit-OR del bigInteger actual con el valor de bigInteger .
Ejemplo:
Input: value1 = 2300 , value2 = 3400 Output: 3580 Explanation: Binary of 2300 = 100011111100 Binary of 3400 = 110101001000 OR of 100011111100 and 110101001000 = 110111111100 Decimal of 110111111100 = 3580. Input: value1 = 54298 , value2 = 64257 Output: 65307
El siguiente programa ilustra el método or() de la clase BigInteger:
/* *Program Demonstrate or() 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 or() method to find (biginteger | val) BigInteger biggerInteger = biginteger.or(val); String result = "Result of OR operation between " + biginteger + " and " + val + " is " + biggerInteger; // Print result System.out.println(result); } }
Result of OR operation between 2300 and 3400 is 3580
Referencia: https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#or(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