溫馨提示×

溫馨提示×

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

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

Java回文串檢查中的異常處理

發(fā)布時間:2024-11-11 15:33:42 來源:億速云 閱讀:78 作者:小樊 欄目:編程語言

在Java中,檢查字符串是否為回文串通常涉及將字符串與其反轉(zhuǎn)版本進(jìn)行比較。在這個過程中,可能會遇到一些異常情況,例如空字符串、null值或非字符串輸入。為了確保代碼的健壯性,我們需要對這些潛在的異常進(jìn)行處理。

以下是一個簡單的Java方法,用于檢查字符串是否為回文串,并包含異常處理:

public class PalindromeChecker {

    public static void main(String[] args) {
        try {
            System.out.println(isPalindrome("racecar")); // true
            System.out.println(isPalindrome("hello")); // false
            System.out.println(isPalindrome("")); // true
            System.out.println(isPalindrome(null)); // throws exception
            System.out.println(isPalindrome(123)); // throws exception
        } catch (IllegalArgumentException e) {
            System.err.println(e.getMessage());
        }
    }

    public static boolean isPalindrome(Object input) {
        if (input == null) {
            throw new IllegalArgumentException("Input cannot be null.");
        }

        if (!(input instanceof String)) {
            throw new IllegalArgumentException("Input must be a string.");
        }

        String str = (String) input;
        int left = 0;
        int right = str.length() - 1;

        while (left < right) {
            if (str.charAt(left) != str.charAt(right)) {
                return false;
            }
            left++;
            right--;
        }

        return true;
    }
}

在這個示例中,我們首先檢查輸入是否為null,如果是,則拋出IllegalArgumentException。接下來,我們檢查輸入是否為字符串類型,如果不是,同樣拋出IllegalArgumentException。最后,我們使用雙指針法檢查字符串是否為回文串。

main方法中,我們使用try-catch語句調(diào)用isPalindrome方法,以便在遇到異常時捕獲并處理它們。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI