Método Java Integer bitCount()

El método bitCount() de la clase Integer del paquete java.lang devuelve el recuento del número de bits uno en la representación binaria en complemento a dos de un valor int. Esta función a veces se denomina recuento de población .

Sintaxis:

public static int bitCount(int n)
Parameter :
n : the value whose bits are to be counted
Return :
This method returns the count of the number of one-bits in the two's complement 
binary representation of an int value.

Ejemplo: para mostrar el funcionamiento del método java.lang.Integer.bitCount() .

// Java program to demonstrate working
// of java.lang.Integer.bitCount() method
import java.lang.Integer;
  
class Gfg {
    // driver code
    public static void main(String args[])
    {
        int a = 10;
  
        // Convert integer number to binary  format
        System.out.println(Integer.toBinaryString(a));
  
        // to print number of 1's in the number a
        System.out.println(Integer.bitCount(a));
    }
}

Producción:

1010
2

Publicación traducida automáticamente

Artículo escrito por Niraj_Pandey 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 *