先决条件:BigInteger基础
的java.math.BigInteger.negate()方法返回一个BigInteger,其值为(-this)。 negate()方法将更改BigInteger的单个位。
用法:
public BigInteger negate()
参数:该方法不接受任何参数。
返回值:该方法返回(-this)的操作。
例子:
Input: value = 2300 Output: -2300 Explanation: Binary signed 2's complement of 2300 = 0000100011111100 Singed bit are 0000 change sing bit to 1111 so negate of 0000100011111100 in signed 2's complement is 1111011100000100 Decimal value = -2300. Input: value = 567689 Output: -567689
以下示例程序旨在说明BigInteger的negate()方法。
/*
*Program Demonstrate negate() method of BigInteger
*/
import java.math.*;
public class GFG {
public static void main(String[] args)
{
// Create BigInteger object
BigInteger biginteger = new BigInteger("2300");
// Call negate() method to find -this
BigInteger finalvalue = biginteger.negate();
String result = "Result of negate operation on " +
biginteger + " is " + finalvalue;
// Prints result
System.out.println(result);
}
}
输出:
Result of negate operation on 2300 is -2300
参考: https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#negate()
相关用法
- Java BigInteger pow()用法及代码示例
- Java BigInteger or()用法及代码示例
- Java BigInteger mod()用法及代码示例
- Java BigInteger xor()用法及代码示例
- Java BigInteger abs()用法及代码示例
- Java BigInteger not()用法及代码示例
- Java BigInteger and()用法及代码示例
- Java BigDecimal negate()用法及代码示例
- Java BigInteger andNot()用法及代码示例
- Java BigInteger clearBit()用法及代码示例
- Java BigInteger modPow()用法及代码示例
- Java BigInteger toString()用法及代码示例
- Java BigInteger shiftLeft()用法及代码示例
- Java BigInteger setBit()用法及代码示例
- Java BigInteger shiftRight()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 BigInteger negate() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。