中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

什么是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

沽源县| 贡觉县| 鹤壁市| 英吉沙县| 宝丰县| 昔阳县| 桃园县| 宜君县| 巴东县| 清河县| 靖边县| 萨嘎县| 揭东县| 辽中县| 谷城县| 韩城市| 乐业县| 太谷县| 万年县| 城口县| 陆丰市| 井陉县| 麻城市| 驻马店市| 阿瓦提县| 肃宁县| 凯里市| 化州市| 靖江市| 清河县| 临高县| 南阳市| 景宁| 桂东县| 禹城市| 桦川县| 澜沧| 荥阳市| 师宗县| 涿州市| 巨野县|