Java.math.BigInteger.bitCount()方法範例


 java.math.BigInteger.bitCount() 返回此BigInteger的二進位制二補數表示的位,從它的符號位不同的數位。實現位向量樣式集上BigIntegers的時候,此方法很有用。

宣告

以下是java.math.BigInteger.bitCount()方法的宣告

public int bitCount()

引數

  • NA

返回值

此方法在此BigInteger,從它的符號位不同的二補數表示返回的位元數。

異常

  • NA

例子

下面的例子顯示math.BigInteger.bitCount()方法的用法

package com.yiibai;

import java.math.*;

public class BigIntegerDemo {

   public static void main(String[] args) {

	// create 2 BigInteger objects
	BigInteger bi1, bi2;  

	// create 2 int objects
	int i1, i2;
	
	// assign values to bi1, bi2
	bi1 = new BigInteger("7"); 
	bi2 = new BigInteger("-7"); 

	// perform bitcount operation on bi1, bi2
	i1 = bi1.bitCount();
	i2 = bi2.bitCount();
	  
	String str1 = "Result of bitcount operation on " + bi1 +" is " +i1;
	String str2 = "Result of bitcount operation on " + bi2 +" is " +i2;

	// print i1, i2 values
	System.out.println( str1 );
	System.out.println( str2 );
   }
}

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

Result of bitcount operation on 7 is 3
Result of bitcount operation on -7 is 2