gpt4 book ai didi

java - 当有人未​​能输入正确的密码时,如何使对话框显示?

转载 作者:行者123 更新时间:2023-12-02 05:35:00 25 4
gpt4 key购买 nike

好吧,这是我需要工作的代码,我认为其余的可能无关紧要。

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                         
int failT = 1;
String answer = pass.getText();
if (answer.equals(password)){
System.out.println("CORRECT!!");

pass.setText("");
}
else {
failT =+ 1;
pass.setText("");
if (failT >= 3){
JOptionPane.showMessageDialog(null, "SORRY, you have failed 3 times goodbye");
}
}
}

最佳答案

我认为你应该更换

failT =+ 1;

failT += 1;

关于java - 当有人未​​能输入正确的密码时,如何使对话框显示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25069691/

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