Friday, October 17, 2025
HomeLanguagesJavaBigInteger bitLength() Method in Java

BigInteger bitLength() Method in Java

The java.math.BigInteger.bitLength() method returns the number of bits in the minimal two’s-complement representation of this BigInteger, excluding a sign bit. For positive BigIntegers, this is equivalent to the number of bits in the ordinary binary representation. The bitLength method Computes (ceil(log2(this < 0 ? -this : this+1))).
Syntax: 
 

public int bitLength()

Parameters: The method does not return any parameters.
Return Value: The method is used to return the number of bits in the minimal two’s-complement representation of this BigInteger, excluding a sign bit.
Examples: 
 

Input: value = 2300 
Output: 12
Explanation:
Binary signed 2's complement of 2300 = 0000100011111100
first four bits are signed bit so exclude them than remaining 
no of bits = 12. So bitLength in 0000100011111100 = 12.

Input: value = 5482549
Output: 23

Below program illustrates the use of bitLength() method of BigInteger. 
 

Java




// Program to demonstrate bitLength() method of BigInteger
 
import java.math.*;
 
public class GFG {
 
    public static void main(String[] args)
    {
 
        // Create  BigInteger objects
        BigInteger biginteger = new BigInteger("2300");
 
        // Call bitLength() method on bigInteger
        int count = biginteger.bitLength();
 
        String result = "bitLength of  " + biginteger +
        " is " + count;
 
        // Print result
        System.out.println(result);
    }
}


Output: 

bitLength of  2300 is 12

 

Reference:https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#bitLength()
 

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS