亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

比Math類庫abs()方法性能更高的取絕對值方法介紹

發布時間:2020-09-16 11:24:23 來源:腳本之家 閱讀:147 作者:簡簡單單OnlineZuozuo 欄目:編程語言

Math.abs()的實現源碼

通過三目運算符判斷a是否小于0來實現

/**
  * 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;
 }

如果換種方式,性能會有20%左右的提升

代碼如下

 /**
  * Created by 譚健 2017/8/13. 12:47.
  * All Rights Reserved
  *
  * int 是 32 位數據
  * int 類型的任何正數右移31位 = 0,任何負數右移31位 = 1
  * 溢出 31 位截斷,空出 31 位補1,得到-1
  * a>>31 可以得到該數的符號位 + 還是 -
  * 如果 a>>31 + ,那么 a ^ 0 = a ,如果 a>>31 - ,那么 a ^ -1 翻轉 a 的二進制
  *
  * @param a int a
  * @return a 的絕對值
  */
 public static int abs(int a){
  return (a^(a>>31))-(a>>31);
 }

奇數偶數的判斷

/**
  * 一般普遍采用 n % 2 == 0 的方式
  * 但是如果換成位運算方式,效率會比前者好很多
  *
  * 在二進制中,末位為 0 必然是偶數,否則是奇數,并且不論正負
  * 所以,是什么數,看看末位就行了
  *
  * @param a long a
  * @return 如果是奇數,返回true,否則返回false
  */
 public static boolean isOdd(long a){
  return (a & 1) == 1;
 }

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

湘乡市| 城步| 黄浦区| 吉木乃县| 英超| 盐源县| 石城县| 恩平市| 进贤县| 祁连县| 河池市| 黑山县| 屏山县| 石城县| 偏关县| 汉阴县| 河源市| 宣武区| 长泰县| 新龙县| 昭苏县| 阿鲁科尔沁旗| 大埔区| 绍兴县| 珠海市| 安康市| 翁牛特旗| 庆元县| 阿拉善左旗| 大余县| 南漳县| 青海省| 赣榆县| 巴彦淖尔市| 漳平市| 沽源县| 平利县| 温州市| 吴忠市| 郁南县| 阜平县|