Java.math.BigInteger.testBit()方法實例
java.math.BigInteger.testBit(int n) 當且僅當所指定的位被置位時返回true。它計算方式爲 (this & (1<<n)) != 0).
聲明
以下是java.math.BigInteger.testBit()方法的聲明
public boolean testBit(int n)
參數
- n - 位的指數測試
返回值
此方法返回當且僅當此BigInteger的指定位被設置爲true。
異常
- ArithmeticException - n 是一個負數
例子
下面的例子顯示math.BigInteger.testBit()方法的用法
package com.yiibai; import java.math.*; public class BigIntegerDemo { public static void main(String[] args) { // create a BigInteger object BigInteger bi; // create 2 boolean objects Boolean b1, b2; bi = new BigInteger("10"); // perform testbit on bi at index 2 and 3 b1 = bi.testBit(2); b2 = bi.testBit(3); String str1 = "Test Bit on " + bi + " at index 2 returns " +b1; String str2 = "Test Bit on " + bi + " at index 3 returns " +b2; // print b1, b2 values System.out.println( str1 ); System.out.println( str2 ); } }
讓我們編譯和運行上面的程序,這將產生以下結果:
Test Bit on 10 at index 2 returns false Test Bit on 10 at index 3 returns true