我正在尝试使用while循环在我的简单程序中重新运行部分代码。在此计划中,用户创建一个简单的帐户,输入验证码,然后登录。登录后,我希望允许用户退出,编辑他的个人资料设置等。但是我有一个小问题。
假设用户刚刚编辑了他们的帐户设置。我希望他们能够返回"菜单"而不是程序终止。
问题在于如何做到这一点。由于java中没有goto
语句,因此我必须使用while
循环。我不知道该怎么做。我无法绕过它。循环总是困惑我。另外,我应该使用while
循环吗?使用for
或do-while
循环会更好吗?我应该使用什么表达方式?我需要break
声明吗?
我知道这不是一个具体的问题,但是让我走上正确道路的任何帮助都是值得赞赏的。
以下是完整的参考代码。
public static void main(String[] args) {
System.out.println("Hi! To begin please choose your username.");
System.out.println("To do this, please enter your username below. ");
System.out.println("This name must be at least three characters.");
Scanner userInput = new Scanner(System.in);
String userName = userInput.next();
int nameLength = userName.length();
if (nameLength > 2) {
System.out.println("Now please enter your password.");
System.out.println("This password must be at lease five characters");
String passWord = userInput.next();
int passLength = passWord.length();
if (passLength > 4) {
System.out.println("Signup alost complete.");
Random rand = new Random();
int randm = rand.nextInt(100000) + 1;
System.out.println("To confirm you are not a robot, please enter this code: " + randm);
int code = userInput.nextInt();
if (code == randm) {
System.out.println("Thank you, " + userName);
System.out.println("You may now login. Begin by entering your username");
//Where I would go if the user signed out
String name = userInput.next();
if (name.equals(userName)) {
System.out.println("Now please enter you password");
String pass = userInput.next();
if (pass.equals(passWord)) {
System.out.println("Thank you. You have now successfully logged in");
//Where the "main menu" will be
//Rest of code will also go here
}
else {
System.out.println("Password is incorrect");
}
}
else {
System.out.println("Username is incorrect");
}
}
else {
System.out.println("The code entered is incorrect.");
}
}
else {
System.out.println("Invalid Password");
}
}
else {
System.out.println("Invalid Username");
}
}
答案 0 :(得分:1)
您已发表评论//where would I go if the user signed out?
答案是,当他退出时,您将向sign in
显示消息,以便他可以再次登录。你可以通过使用for循环或循环或任何你想要的循环来做到这一点。这意味着用户登录的部分将处于循环中,如果用户登录则会显示菜单。如果用户退出,则登录表单将无限显示。
答案 1 :(得分:0)
您可以将代码放入其中。它不会破坏并会继续循环。
do{
}
while(true);