gpt4 book ai didi

Java:如果变量为空(来自用户输入);休息;否则继续主要方法

转载 作者:行者123 更新时间:2023-11-29 03:29:16 25 4
gpt4 key购买 nike

抱歉,如果这是一个愚蠢的问题,但我正在寻找一种方法来在用户输入为空时中断并开始循环的另一次迭代。这是我的代码:

while(true) {
// Get the users input
Scanner Input = new Scanner(System.in);
System.out.println("Enter text:");
String studentInfo = Input.nextLine();

if (studentInfo == null) {
System.out.println("Please enter valid infomation.");
break;
}
continue;
}

休息后,我希望它回到 while(true) 并从那里重新开始,再次要求用户输入。

谢谢大家,

JT

最佳答案

检查:

if (studentInfo.isEmpty()) {
continue;
}

while 循环中删除 Scanner input = new Scanner(System.in); 声明。

关于Java:如果变量为空(来自用户输入);休息;否则继续主要方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19233475/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com