Java Integer bitCount() methodThe bitCount() is a method of Integer class under java.lang package. It returns the number of one-bits in the two's complement binary representation of the specified int value. This function is sometimes referred to as the population count. SyntaxFollowing is the declaration of bitCount() method: Parameter:
Returns:The bitCount() method returns the number of one-bits in the two's complement binary representation of the specified int value. Exceptions:NA Compatibility Version:Java 1.5 and above Example 1Output: 100011 3 Example 2Output: Entered Integer number is: 97 Binary Conversion: 1100001 Number of 1's bit are: 3 Example 3Output: Enter the Integer value: 23 The input number is: 23 Binary Conversion: 10111 Number of 1's bit are: 4 Next TopicJava-integer-bytevalue-method |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India