Returns the absolute value of a double value. If the argument is not negative, the argument is returned. If the argument is negative, the negation of the argument is returned. Special cases: If the argument is positive zero or negative zero, the result is positive zero. If the argument is infinite,
(double a)
| 45 | * Double.longBitsToDouble((Double.doubleToLongBits(a)<<1)>>>1) |
| 46 | */ |
| 47 | public static native double abs(double a); |
| 48 | |
| 49 | /** |
| 50 | * Returns the absolute value of a float value. If the argument is not negative, the argument is returned. If the argument is negative, the negation of the argument is returned. Special cases: If the argument is positive zero or negative zero, the result is positive zero. If the argument is infinite, the result is positive infinity. If the argument is NaN, the result is NaN. In other words, the result is equal to the value of the expression: |
no outgoing calls