您好,登錄后才能下訂單哦!
在Java中,檢查字符串是否為回文串通常涉及將字符串與其反轉版本進行比較。在這個過程中,可能會遇到一些異常情況,例如空字符串、null值或非字符串輸入。為了確保代碼的健壯性,我們需要對這些潛在的異常進行處理。
以下是一個簡單的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
語句調用isPalindrome
方法,以便在遇到異常時捕獲并處理它們。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。