Método BigInteger testBit() en Java

requisito previo: Conceptos básicos de BigInteger
El método java.math.BigInteger.testBit( index ) devuelve verdadero si y solo si el bit designado está establecido. Este método Calcula (this & (1<<n)) != 0) .

Sintaxis:

public boolean testBit(int n)

Parámetro: El método toma un parámetro n de tipo entero que se refiere al índice del bit que necesita ser probado.

Valor devuelto: el método devuelve verdadero si y solo si el bit designado está configurado; de lo contrario, devolverá falso.

Excepción: el método lanzará una ArithmeticException cuando n sea negativo.
Ejemplos:

Input: BigInteger = 2300, n = 4
Output: true
Explanation:
Binary Representation of 2300 = 100011111100
bit at index 4 is 1 so set it means bit is set
so method will return true

Input: BigInteger = 5482549 , n = 1
Output: false

El siguiente programa ilustra el método testBit() de BigInteger.

// Program to demonstrate the testBit()
// method of BigInteger
  
import java.math.*;
  
public class GFG {
  
    public static void main(String[] args)
    {
        // Creating a BigInteger object
        BigInteger biginteger = new BigInteger("2300");
  
        // Creating an int i for index
        int i = 3;
  
        boolean flag = biginteger.testBit(i);
  
        String result = "The bit at index " + i + " of " + 
        biginteger + " is set = " + flag;
  
        // Displaying the result
        System.out.println(result);
    }
}
Producción:

The bit at index 3 of 2300 is set = true

Referencia: https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#testBit(int)

Publicación traducida automáticamente

Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *