第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

檢查 int 變量是否在 Java 中溢出或下溢

檢查 int 變量是否在 Java 中溢出或下溢

紅顏莎娜 2022-11-30 17:01:50
我需要從頭開始創(chuàng)建一個(gè) parseInt 方法,到目前為止我已經(jīng)明白了。唯一的部分是我無法弄清楚如何確定一個(gè) int 變量是溢出還是下溢,如果它是然后在 Java 中拋出 IllegalArgumentException。為了更好地理解這是我的任務(wù):創(chuàng)建靜態(tài)方法 parseInt(String) 將字符串轉(zhuǎn)換為 int 值,正值或負(fù)值。方法在...時(shí)拋出 IllegalArgumentException字符串包含除“-”之外的非數(shù)字字符(作為字符串的第一個(gè)字符)。字符串只有 '-' 而沒有數(shù)字。字符串表示一個(gè)太大而無法存儲為整數(shù)并產(chǎn)生溢出的數(shù)字字符串表示一個(gè)數(shù)字太小而不能作為整數(shù)存儲并產(chǎn)生下溢這是我到目前為止所擁有的 /** * Convert a string into an integer value * @param str The string to be converted * @return answer * @throws IllegalArgumentException if answer is underflowing or overflowing */public static int parseInt(String str) throws IllegalArgumentException {    int answer = 0, factor = 1;    int i = 0;    for (i = str.length()-1; i >= 0; i--) {        answer += (str.charAt(i) - '0') * factor;        factor *= 10;    }    boolean isNegative = false;    if(str.charAt(0) == '-') {        isNegative = true;    }    if (answer > Integer.MAX_VALUE) throw new IllegalArgumentException();    if (answer < Integer.MIN_VALUE) throw new IllegalArgumentException();    if (isNegative) {        answer = -answer;    }    return answer;}
查看完整描述

1 回答

?
qq_花開花謝_0

TA貢獻(xiàn)1835條經(jīng)驗(yàn) 獲得超7個(gè)贊

這不需要使用long


public static int parseInt(String str) throws IllegalArgumentException {

    int answer = 0, factor = 1;


    boolean isNegative = false;

    if(str.charAt(0) == '-') {

        isNegative = true;

    }


    for (int i = str.length()-1; i >= (isNegative ? 1 : 0); i--) {

        int nextInt = (str.charAt(i) - '0') * factor;


        if(isNegative && answer > Math.abs(Integer.MIN_VALUE + nextInt))

            throw new IllegalArgumentException();

        else if(!isNegative && answer > Integer.MAX_VALUE - nextInt)

            throw new IllegalArgumentException();


        answer += nextInt;

        factor *= 10;

    }


    if (isNegative) {

        answer = -answer;

    }


    return answer;

}


查看完整回答
反對 回復(fù) 2022-11-30
  • 1 回答
  • 0 關(guān)注
  • 146 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號