java中对输入的字符串进行判断

从控制台中用Scanne从键盘输入字符串,函数hw()是对字符串是否是回文进行判的函数,我想实现在一次判断结束后能继续输入,从而能继续判断 用什么办法

用equals方法进行比较判断,如:输入的字符串为str=zhidao
"zhidao".equals(str))
Equals则是string对象的方法  
我们比较无非就是这两种 1、基本数据类型比较 2、引用对象比较
1、基本数据类型比较
Equals都比较两个值是否相等。相等为true 否则为false;
2、引用对象比较
Equals都是比较栈内存中的地址是否相等 。相等为true 否则为false;
温馨提示:内容为网友见解,仅供参考
第1个回答  推荐于2018-02-27
String str=null;
while(true){
System.out.println("请输入要判断的字符串:");
str=scanner.nextLine();
if("quit".equals(str)){
break;
}
hw();
}本回答被提问者和网友采纳
第2个回答  2013-10-30
fro (){
Scanne
if(true){
break;
}else{
}
}
第3个回答  2013-10-30
import java.util.Scanner;

public class HWStr {
static String hw(String str){
String hWstrMax = null;
char[] c=str.toCharArray();

for(int i=1;i<(c.length/2+1);i++){
if(c[i-1]==c[i+1]){
int flag=0;
for(int m=i-1,n=i+1;m>=0&&n<c.length;m--,n++){

if(c[m]==c[n]){
flag++;
}

}

if(flag==i){
hWstrMax=str.substring(0, 2*i+1);
}
}

}
return hWstrMax;
}
static void continueYN(){
Scanner scan=new Scanner(System.in);
System.out.println("请输入你要判断的字符串:");
String str1=scan.nextLine();
System.out.println(hw(str1));
System.out.println("是否继续y/n");
if(scan.nextLine().equals("y")){
continueYN();
}else{
System.out.println("你放弃了");
}
}
public static void main(String[] args){

continueYN();
}
}
第4个回答  2013-10-30
那你在scanner加上一个for循环。之后满足条件的brake;不满足条件的就继续输入就行,for循环次数可以自己控制一下
相似回答