Requisito previo: Conceptos básicos de BigInteger
El método java.math.BigInteger.bitCount() devuelve el número de bits en la representación en complemento a dos de este BigInteger que difieren de su bit de signo. Este método es útil cuando se implementan conjuntos de estilos de vectores de bits sobre BigIntegers.
Sintaxis:
public int bitCount()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: el método se usa para devolver el número de bits en la representación de complemento a dos de este BigInteger que difieren de su bit de signo.
Ejemplos:
Input: value = 2300 Output: 7 Explanation: Binary signed 2's complement of 2300 = 0000100011111100 Singned bit is 0 because 2300 is positive so no of 1 in 0000100011111100 is bitCount So bitCount in 0000100011111100 = 7 Input: value = 5482549 Output: 11
El siguiente programa ilustra el método bitCount() de BigInteger.
Java
/* *Program Demonstrate bitCount() method of BigInteger */ import java.math.*; public class GFG { public static void main(String[] args) { // Creates BigInteger objects BigInteger biginteger = new BigInteger("2300"); // Calling bitCount() method on bigInteger int count = biginteger.bitCount(); String result = "BitCount of " + biginteger + " is " + count; // Print result System.out.println(result); } }
BitCount of 2300 is 7
Referencia: https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#bitCount()
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA