Java Integer bitCount() method
The bitCount() method of Integer class of java.lang package returns the count of the number of one-bits in the two’s complement binary representation of an int value. This function is sometimes referred to as the population count.
Syntax :
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.
Example :To show working of java.lang.Integer.bitCount() method.
// 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)); } } |
chevron_right
filter_none
Output:
1010 2
Recommended Posts:
- BigInteger bitCount() Method in Java
- Integer sum() Method in Java
- Integer toOctalString() Method in Java
- Integer reverse() Method In Java
- Java Integer byteValue() method
- Integer floatValue() Method in Java
- Integer valueOf() Method in Java
- Java Integer compareTo() method
- Java Integer compare() method
- Integer intValue() Method in Java
- Integer rotateRight() Method in Java
- Integer shortValue() Method in Java
- Integer signum() Method in Java
- Integer reverseBytes() Method in Java
- Java Integer compareUnsigned() method
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



