我不知道爲什麼下面的方法不工作。它顯示:檢查一個字符串是否是一個迴文(使用方法)
Palindrome.java:97: error:
<identifier>
expected
的方法,需要一個參數是一個字符串,並且應該返回true
或false
如果所提供的字符串是迴文。
public static boolean checkPalindrome(checkString) {
boolean test = true;
int left = 0;
int right = checkString.length() - 1;
while (left < right && test) {
if (checkString.charAt(left) != checkString.charAt(right)) {
test = false;
}
right--;
left++;
}
return test;
}
你是什麼意思的「不工作」?它做什麼,它不應該這樣做?任何錯誤? – RealSkeptic
當您發佈問題時,您的方法中沒有數據類型。這是一個錯字嗎? – sam
@Tunaki除了縮進之外,你不應該改變源代碼。你只是刪除了問題的原因。 – RealSkeptic