我不知道为什么以下方法不起作用。表明:


  Palindrome.java:97:错误:预期为<identifier>


该方法采用的参数是String,如果提供的String是回文,则应返回truefalse

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;
}

最佳答案

第一行中的错误,应该是:

public static boolean checkPalindrome(String checkString)


您必须在参数^之前提供数据类型

09-25 16:23