先决条件:BigInteger基础
clearBit()方法返回一个BigInteger,用于清除BigInteger中的特定位位置。 BigInteger二进制表示的索引n处的位将被清除,表示转换为零。从数学上讲,我们可以说它用于计算&〜(1
用法:
public BigInteger clearBit(int n)
参数:该方法采用一个参数n,该参数指需要清除的位的索引。
返回值:清除位位置n后,该方法将返回BigInteger。
抛出:当n为负数时,该方法可能抛出ArithmeticException。
例子:
Input: value = 2300, index = 3 Output: 2292 Explanation: Binary Representation of 2300 = 100011111100 bit at index 3 is 1 so clear the bit at index 3 Now Binary Representation becomes 100011110100 and Decimal equivalent of 100011110100 is 2292 Input: value = 5482549, index = 0 Output: 5482548
下面的程序演示了BigInteger()的clearBit(index)方法。
/*
*Program Demonstrate clearBit() method of BigInteger
*/
import java.math.*;
public class GFG {
public static void main(String[] args)
{
// Creating BigInteger object
BigInteger biginteger = new BigInteger("5482549");
// Creating an int i for index
int i = 0;
// Call clearBit() method on bigInteger at index i
// store the return BigInteger
BigInteger changedvalue = biginteger.clearBit(i);
String result = "After applying clearbit at index " +
i + " of " + biginteger+" New Value is " + changedvalue;
// Print result
System.out.println(result);
}
}
输出:
After applying clearbit at index 0 of 5482549 New Value is 5482548
参考:https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#clearBit(int)
相关用法
- Java BigInteger not()用法及代码示例
- Java BigInteger pow()用法及代码示例
- Java BigInteger abs()用法及代码示例
- Java BigInteger or()用法及代码示例
- Java BigInteger mod()用法及代码示例
- Java BigInteger and()用法及代码示例
- Java BigInteger xor()用法及代码示例
- Java BigInteger remainder()用法及代码示例
- Java BigInteger equals()用法及代码示例
- Java BigInteger valueOf()用法及代码示例
- Java BigInteger toByteArray()用法及代码示例
- Java BigInteger sqrt()用法及代码示例
- Java BigInteger doubleValue()用法及代码示例
- Java BigInteger negate()用法及代码示例
- Java BigInteger flipBit()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 BigInteger clearBit() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。