當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Long bitCount()用法及代碼示例


Long類bitCount()方法

  • bitCount() 方法可在java.lang包。
  • bitCount() 方法用於在給定的 long 類型參數 [value] 的 2 的補碼二進製表示中找到 1 的位數。
  • bitCount() 方法是一個靜態方法,它也可以通過類名訪問,如果我們嘗試使用類對象訪問該方法,那麽我們也不會收到錯誤。
  • bitCount() 方法在計數位時不拋出異常。

用法:

    public static int bitCount(long value);

參數:

  • long value– 表示要解析的long值。

返回值:

這個方法的返回類型是int,它返回給定 long 值的 2 的補碼中 1 的位數。

例:

// Java program to demonstrate the example 
// of bitCount(long value) method of Long class

public class BitCountOfLongClass {
    public static void main(String[] args) {
        long value = 1296;

        // It returns the string representation of the given unsigned 
        // long value denoted by the argument in binary by calling
        // Long.toBinaryString(value)
        System.out.println("Long.toBinaryString(value):" + Long.toBinaryString(value));

        // It returns the number of 1's bits in 2's complement 
        // of the given argument 'value' by calling Long.bitCount(value)
        System.out.println("Long.bitCount(value):" + Long.bitCount(value));
    }
}

輸出

Long.toBinaryString(value):10100010000
Long.bitCount(value):3


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Long class bitCount() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。