gpt4 book ai didi

java - 检查 do while 循环

转载 作者:行者123 更新时间:2023-12-01 12:13:38 24 4
gpt4 key购买 nike

我创建了一个用户ArrayList。我已经制定了一种添加新用户的方法。用户必须有电子邮件,并且程序必须检查 ArrayList 以查看该用户是否已存在于 ArrayList 中。如果我分别运行检查是否正确的电子邮件和正确的姓名,它会起作用,但是当我使用此 while(userExists || matchFound) 将其组合时,它不起作用。我已经尝试了一切,所以希望你能帮助我。提前致谢。

public void addUser()
{
System.out.println("-----------------------------"); //separation of previous screen
System.out.println("Create a new user.");

boolean userExists = false;
boolean matchFound = false;

String userToAdd;

do {
System.out.println("Username: ");
userToAdd = input.next();
Pattern p = Pattern.compile(".+@.+\\.[a-z]+");
Matcher m = p.matcher(userToAdd);
matchFound = m.matches();

if (matchFound) {
System.out.println("just a check if it is a email");
}
if(!matchFound) {
System.out.println("no email. Try again.");
matchFound = true;
}
for(User currentUser : db.getUsers()) {
if (currentUser.getName().equals(userToAdd)) {
System.out.println("User already exist. Try again.");
userExists = true;
}
}

} while(userExists || matchFound);
}

最佳答案

只要用户不是有效的电子邮件地址或该用户已存在,您就希望保持在循环中。因此你需要:

while(userExists || !matchFound);

当 matchFound 为 false 时,您可能不应该将其设置为 true :

if(!matchFound){
System.out.println("no email. Try again.");
matchFound = true; // remove this line
}

它只能通过 matchFound = m.matches(); 设置

关于java - 检查 do while 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27133320/

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