Java Long bitCount()方法

java.lang.Long.bitCount() 方法返回一个位在指定long值i的二进制补码表示的数。这个函数有时被称为“人口数”。

1 语法

public static int bitCount(long i)

2 参数

i :这是一个long值。

3 返回值

此方法返回一个位在指定long值的二进制补码表示的数。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 *  Java Long bitCount()方法
 */
import java.lang.*;

public class LongDemo {

   public static void main(String[] args) {

     long l = 219;
     System.out.println("Number = " + l);
    
     /* returns the string representation of the unsigned long value 
     represented by the argument in binary (base 2) */
     System.out.println("Binary = " + Long.toBinaryString(l));

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

输出结果为:

Number = 219
Binary = 11011011
Number of one bits = 6

 

热门文章

优秀文章