java.math.BigInteger.not()方法用於查找BigInteger的bitwise-NOT。當且僅當此BigInteger為非負值時,此方法才返回負值。 BigInteger.not()方法對當前bigInteger進行按位“非”運算。
用法:
public BigInteger not()
參數:該方法不帶任何參數。
返回值:該方法返回與其一起使用的BigInteger的bitwise-NOT值。
例子:
Input: value = 2300 Output: -2301 Explanation: Binary of 2300 = 100011111100 NOT of 100011111100 in signed 2's complement is 1111011100000011 Decimal value = -2301. Input: value = 567689 Output: -567690
以下示例程序旨在說明BigInteger()的not()方法:
/*
*Program Demonstrate not() method of BigInteger
*/
import java.math.*;
public class GFG {
public static void main(String[] args)
{
// Creates BigInteger object
BigInteger biginteger = new BigInteger("2300");
// Call not() method to find ~this
BigInteger finalvalue = biginteger.not();
String result = "Result of NOT operation on " +
biginteger + " is " + finalvalue;
// Print result
System.out.println(result);
}
}
輸出:
Result of NOT operation on 2300 is -2301
參考:https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#and(java.math.BigInteger)
相關用法
- Java BigInteger pow()用法及代碼示例
- Java BigInteger xor()用法及代碼示例
- Java BigInteger or()用法及代碼示例
- Java BigInteger and()用法及代碼示例
- Java BigInteger mod()用法及代碼示例
- Java BigInteger abs()用法及代碼示例
- Java BigInteger remainder()用法及代碼示例
- Java BigInteger equals()用法及代碼示例
- Java BigInteger doubleValue()用法及代碼示例
- Java BigInteger toByteArray()用法及代碼示例
- Java BigInteger valueOf()用法及代碼示例
- Java BigInteger sqrt()用法及代碼示例
- Java BigInteger negate()用法及代碼示例
- Java BigInteger testBit()用法及代碼示例
- Java BigInteger getLowestSetBit()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 BigInteger not() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。