先決條件:BigInteger基礎
當且僅當設置了指定的位時,java.math.BigInteger.testBit(index)方法將返回true。此方法計算(this&(1
用法:
public boolean testBit(int n)
參數:該方法采用整數類型的一個參數n,該參數表示需要測試的位的索引。
返回值:當且僅當設置了指定的位時,該方法返回true,否則它將返回false。
異常:當n為負數時,該方法將引發ArithmeticException。
例子:
Input: BigInteger = 2300, n = 4 Output: true Explanation: Binary Representation of 2300 = 100011111100 bit at index 4 is 1 so set it means bit is set so method will return true Input: BigInteger = 5482549 , n = 1 Output: false
以下示例程序旨在說明BigInteger的testBit()方法。
// Program to demonstrate the testBit()
// method of BigInteger
import java.math.*;
public class GFG {
public static void main(String[] args)
{
// Creating a BigInteger object
BigInteger biginteger = new BigInteger("2300");
// Creating an int i for index
int i = 3;
boolean flag = biginteger.testBit(i);
String result = "The bit at index " + i + " of " +
biginteger + " is set = " + flag;
// Displaying the result
System.out.println(result);
}
}
輸出:
The bit at index 3 of 2300 is set = true
參考: https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#testBit(int)
相關用法
- Java BigInteger not()用法及代碼示例
- Java BigInteger pow()用法及代碼示例
- Java BigInteger and()用法及代碼示例
- Java BigInteger mod()用法及代碼示例
- Java BigInteger or()用法及代碼示例
- Java BigInteger xor()用法及代碼示例
- Java BigInteger abs()用法及代碼示例
- Java BigInteger valueOf()用法及代碼示例
- Java BigInteger toByteArray()用法及代碼示例
- Java BigInteger remainder()用法及代碼示例
- Java BigInteger equals()用法及代碼示例
- Java BigInteger sqrt()用法及代碼示例
- Java BigInteger doubleValue()用法及代碼示例
- Java BigInteger negate()用法及代碼示例
- Java BigInteger flipBit()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 BigInteger testBit() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。