java.lang.Integer.bitCount()方法範例


java.lang.Integer.bitCount() 方法返回一個位在指定的int i值的二進位制二補數表示的數位。這有時被稱為“人口數”。

宣告

以下是java.lang.Integer.bitCount()方法的宣告

public static int bitCount(int i)

引數

  • i -- 這是int值。

返回值

此方法返回一個位在指定int值的二進位制二補數表示的數位。

異常

  • NA

例子

下面的例子顯示java.lang.Integer.bitCount()方法的使用。

package com.yiibai;

import java.lang.*;

public class IntegerDemo {

   public static void main(String[] args) {

     int i = 255;
     System.out.println("Number = " + i);
    
     /* returns the string representation of the unsigned integer value 
     represented by the argument in binary (base 2) */
     System.out.println("Binary = " + Integer.toBinaryString(i));

     // returns the number of one-bits 
     System.out.println("Number of one bits = " + Integer.bitCount(i)); 
   }
} 

讓我們來編譯和執行上面的程式,這將產生以下結果:

Number = 170
Binary = 10101010
Number of one bits = 4