當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Math negateExact()用法及代碼示例


Java Math negateExact() 方法反轉指定數字的符號並返回它。

用法:

Math.negateExact(num)

在這裏,negateExact() 是一個靜態方法。因此,我們使用類名 Math 訪問該方法。

參數:

negateExact() 方法采用單個參數。

  • num- 符號要反轉的參數

注意:參數的數據類型應該是int或者long.

返回:

  • 在反轉指定參數的符號後返回值

示例 1:Java 數學。negateExact()

class Main {
  public static void main(String[] args) {

    // create int variables
    int a = 65;
    int b = -25;

    // negateExact() with int arguments
    System.out.println(Math.negateExact(a));  // -65
    System.out.println(Math.negateExact(b));  // 25

    // create long variable
    long c = 52336L;
    long d = -445636L;

    // negateExact() with long arguments
    System.out.println(Math.negateExact(c));  // -52336
    System.out.println(Math.negateExact(d));  // 445636
  }
}

在上麵的示例中,我們使用了Math.negateExact() 方法和intlong 變量來反轉各個變量的符號。

示例 2:Math.negateExact() 引發異常

如果求反的結果溢出數據類型,negateExact() 方法將引發異常。即結果應在指定變量的數據類型範圍內。

class Main {
  public static void main(String[] args) {

    // create a int variable
    // minimum int value
    int a = -2147483648;

    // negateExact() with the int argument
    // throws exception
    System.out.println(Math.negateExact(a));
  }
}

在上麵的例子中,a 的值是最小的int 值。在這裏,negateExact() 方法改變了變量 a 的符號。

-(a)  
=> -(-2147483648)
=> 2147483648    // out of range of int type

因此,negateExact() 方法會引發 integer overflow 異常。

相關用法


注:本文由純淨天空篩選整理自 Java Math negateExact()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。