97久久婷婷五月综合色d啪蜜芽_亚洲国产成人超福利久久精品_亚洲欧洲日产国码无码久久99_国产精品久久久久影视青草

互聯(lián)網(wǎng)+內(nèi)容
134-1887-2552

Java中絕對值函數(shù)使用說明

標(biāo)簽:深圳網(wǎng)站建設(shè)公司2021-01-21 901

絕對值函數(shù)使用說明

絕對值函數(shù)是JDK中Math.java中的實現(xiàn)方法,其用來得到表達(dá)式的絕對值。

其實現(xiàn)非常簡單,源碼如下:

 /**
 * Returns the absolute value of an {@code int} value.
 * If the argument is not negative, the argument is returned.
 * If the argument is negative, the negation of the argument is returned.
 *
 * <p>Note that if the argument is equal to the value of
 * {@link Integer#MIN_VALUE}, the most negative representable
 * {@code int} value, the result is that same value, which is
 * negative.
 *
 * @param a the argument whose absolute value is to be determined
 * @return the absolute value of the argument.
 */
 public static int abs(int a) {
 return (a < 0) ? -a : a;
 }

微信分享領(lǐng)紅包!
相關(guān)閱讀 / 返回上一頁