先决条件: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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。