El método java.math.BigInteger.not() se usa para encontrar el NO bit a bit de un BigInteger. Este método devuelve un valor negativo si y solo si este BigInteger no es negativo. El método BigInteger.not() aplica la operación Not bit a bit sobre el bigInteger actual.
Sintaxis:
public BigInteger not()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: el método devuelve el valor NO bit a bit de un BigInteger con el que se utiliza.
Ejemplos:
Input: value = 2300 Output: -2301 Explanation: Binary of 2300 = 100011111100 NOT of 100011111100 in signed 2's complement is 1111011100000011 Decimal value = -2301. Input: value = 567689 Output: -567690
El siguiente programa ilustra el método not() de BigInteger():
/* *Program Demonstrate not() method of BigInteger */ import java.math.*; public class GFG { public static void main(String[] args) { // Creates BigInteger object BigInteger biginteger = new BigInteger("2300"); // Call not() method to find ~this BigInteger finalvalue = biginteger.not(); String result = "Result of NOT operation on " + biginteger + " is " + finalvalue; // Print result System.out.println(result); } }
Producción:
Result of NOT operation on 2300 is -2301
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