我目前正在为我在高中上的一门课用 Java 编写回文测试器。我向我的老师寻求帮助,他也很困惑。我希望stackoverflow上的社区可以帮助我。谢谢你。
public class Palindrome
{
private String sentence;
public Palindrome(String s)
{
sentence = s;
}
public boolean isPalindrome()
{
if(sentence.length() <= 1)
{
return true;
}
if(sentence.charAt(0) == sentence.charAt(sentence.length()-1))
{
sentence = sentence.substring(1, sentence.length()-1);
isPalindrome();
}
else
return false;
}
}