91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

什么是Integer.parseInt()源碼

發布時間:2021-09-13 10:17:20 來源:億速云 閱讀:192 作者:柒染 欄目:大數據

這篇文章將為大家詳細講解有關什么是Integer.parseInt()源碼,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

character.digit(char ch, int radix)  將radix進制的ch轉化成十進制數;

character.digit(int codePoint, int radix)     將radix進制的askll碼對應的char轉化成十進制數。

例:String s=2147483648

result初始值為0,

limit= -Integer.MAX_VALUE,即 -2147483647,

上一個result和limit比較,排除21474836471這種越界的情況

result*10和limit+當前位比較,排除2147483648這種越界的情況(-2147483640<-2147483647+8)

result-=當前位

    public static int parseInt(String s) throws NumberFormatException {
        return parseInt(s,10);
    }

    public static int parseInt(String s, int radix)
                throws NumberFormatException
    {

        if (s == null) {
            throw new NumberFormatException("null");
        }

        if (radix < Character.MIN_RADIX) {
            throw new NumberFormatException("radix " + radix +
                                            " less than Character.MIN_RADIX");
        }

        if (radix > Character.MAX_RADIX) {
            throw new NumberFormatException("radix " + radix +
                                            " greater than Character.MAX_RADIX");
        }

        int result = 0;
        boolean negative = false;
        int i = 0, len = s.length();
        int limit = -Integer.MAX_VALUE;
        int multmin;
        int digit;

        if (len > 0) {
            char firstChar = s.charAt(0);
            if (firstChar < '0') { // Possible leading "+" or "-"
                if (firstChar == '-') {
                    negative = true;
                    limit = Integer.MIN_VALUE;
                } else if (firstChar != '+')
                    throw NumberFormatException.forInputString(s);

                if (len == 1) // Cannot have lone "+" or "-"
                    throw NumberFormatException.forInputString(s);
                i++;
            }
            
            multmin = limit / radix;
            while (i < len) {
                // Accumulating negatively avoids surprises near MAX_VALUE
                digit = Character.digit(s.charAt(i++),radix);
                if (digit < 0) {
                    throw NumberFormatException.forInputString(s);
                }
                //防止長度越界
                if (result < multmin) {
                    throw NumberFormatException.forInputString(s);
                }
                result *= radix;
                //防止大小越界
                if (result < limit + digit) {
                    throw NumberFormatException.forInputString(s);
                }
                result -= digit;
            }
        } else {
            throw NumberFormatException.forInputString(s);
        }
        return negative ? result : -result;
    }

關于什么是Integer.parseInt()源碼就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

确山县| 汶上县| 克拉玛依市| 扬州市| 吉木乃县| 江孜县| 墨玉县| 灵台县| 石城县| 麻江县| 万年县| 张北县| 于都县| 通渭县| 黄冈市| 大渡口区| 浏阳市| 呼伦贝尔市| 宽甸| 巴里| 建始县| 榆树市| 建德市| 浪卡子县| 垣曲县| 库尔勒市| 岢岚县| 图片| 张掖市| 泽普县| 中卫市| 新民市| 丰县| 保德县| 黑龙江省| 泰来县| 赤城县| 大港区| 栾城县| 白城市| 闸北区|