此 C++ 代码片段的 Java 等效项是什么:
string str ;
while(cin>>str){
//code
}
类似这样的事情
String str ;
while((str = System.in.readLine()) != null){
//code
}
Scanner scanner = new Scanner(System.in);
String sentence = scanner.nextLine();
Scanner scanner = new Scanner(System.in);
boolean flag = true;
while(flag)
{
String str = scanner.nextLine();
// Add any condition to set flag = false to exit from while loop
}
您可以使用 GUI 风格来完成。
import javax.swing.JOptionPane;
String Input=JOptionPane.showInputDialog("Title","Message");