3

我正在尝试编写一种方法来查看字符串是否是回文(也可以正确拼写向后的单词,例如“racecar”。我找不到错误,所以也许另一双眼睛会有所帮助。这是代码:

public boolean isPalindrome(String str){
  numberofQuestions++;
  int n = str.length();
  for( int i = 0; i < n/2; i++ )
  if (str.charAt(i) != str.charAt(n-i-1)) return false;
  return true;
}

编辑:错误截图:

在此处输入图像描述

上课开始:

public class Geek{
private String name;
private int numberofQuestions=0;

最终编辑:在其中一个方法中发现了一个额外的“{”。感谢大家的帮助!

4

5 回答 5

9

我敢打赌,这与缺少大括号或在开始此方法定义之前关闭类主体的大括号有关。

于 2013-11-01T04:31:11.833 回答
2

该方法应完全包含在一个类中

public class Geek {
    private String name;
    private int numberofQuestions = 0;

        public boolean isPalindrome(String str) {
            numberofQuestions++;
            int n = str.length();
            for (int i = 0; i < n / 2; i++)
                if (str.charAt(i) != str.charAt(n - i - 1))
                    return false;
            return true;
        }
    }
于 2013-11-01T04:24:53.353 回答
0

使isPalindrome()函数静态。

这是一个示例:

public class Sample {

    private static int numberofQuestions;

    public static void main(String[] args)
    {
        String str = "racecar";
        String str2 = "notpalindrome";
        boolean test = isPalindrome(str);
        boolean test2 = isPalindrome(str2);
        System.out.println(str + ": " + test);
        System.out.println(str2 + ": " + test2);
    }

    public static boolean isPalindrome(String str) {
        numberofQuestions++;
        int n = str.length();
        for (int i = 0; i < n / 2; i++)
            if (str.charAt(i) != str.charAt(n - i - 1))
                return false;
        return true;
    }
}

输出:

racecar: true
notpalindrome: false
于 2013-11-01T04:32:52.967 回答
0

你必须检查你的花括号是否在循环、方法和类之后正确结束。

于 2013-11-01T04:34:14.633 回答
0

我认为花括号有问题。您没有结束主类 Geek{ } 的括号。

检查这个:

  public class Geek 
   {
        private String name;
        private int numberofQuestions = 0;

            public boolean isPalindrome(String str) 
            {
                numberofQuestions++;
                int n = str.length();
                for (int i = 0; i < n / 2; i++)
                    if (str.charAt(i) != str.charAt(n - i - 1))
                        return false;
                return true;
            }
   }
于 2013-11-01T05:09:20.570 回答