我需要幫助從鍵盤無限串的生成無限的字符串,但是這不工作..如何從鍵盤
Scanner input = new Scanner(System.in);
ArrayList<String> al = new ArrayList<String>();
String check=null;
while(true){
check = input.nextLine();
if(check == "stop") break;
al.add(check);
}
System.out.println(al);
}
}
'unlimited'?和'不工作'?我不明白你想要做什麼或者你有什麼問題,但是...... if(check ==「stop」)幾乎肯定不是你想做的事情。 – nhgrif