当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java BigInteger not()用法及代码示例


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)



相关用法


注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 BigInteger not() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。