4

在第二个 for 循环没有出现之后,我的提示“请输入您的 ID”,它直接进入“请输入您的密码”。它还跳过了从登录提示到密码提示的大量代码。如果您对它为什么会这样表现有任何想法,请与我分享,谢谢。

public void main(String[] args){

    Accounts Accounts = new Accounts();

    Scanner kb = new Scanner(System.in);

    System.out.print("Please create a login ID and hit \"ENTER\": ");
    Login = kb.nextLine();

    for(;;){
        if(!Accounts.isTaken(Login)){
            System.out.print("Please create a password and hit \"ENTER\": ");
            PW = kb.nextLine();
            if(Accounts.validPW(PW)){
                Accounts.createAccount(Login, PW);
                break;
            }
        }
    }

    System.out.print("Do you wish to Log in ? (Y/N): ");
    String response = kb.nextLine();
    if((response=="y")||(response=="Y")){
        for(;;){
           //Not Being Shown
            System.out.println("Please enter your ID: "); // ?????? Where are you?????
            Login = kb.nextLine();
            Accounts.login(Login);
            //Goes straight here
            System.out.print("Please enter your Password: ");
            if ((Accounts.isValid(Login))&&(Accounts.checkAuth(kb.nextLine()))){
                break;
            }
            else{
                System.out.println("Invalid Login-Password!");
            }
        }
    }
    System.out.println("Please enter your Password: ");
    System.out.println("LOGIN AUTHORIZED: "+Accounts.checkAuth(kb.nextLine()));
 }
4

3 回答 3

4

代替

(response=="y")||(response=="Y")

采用

(response.equals("y"))||(response.equals("Y"))
于 2012-11-29T22:37:02.770 回答
3

您正在使用==运算符来检查字符串是否相等。使用equals() method.

==操作员:

  1. 对于原始变量,检查两个原始变量是否具有相同的值。
  2. 对于对象:检查两个引用变量是否指向(引用)同一个对象。

equals() method

  1. 检查两个对象是否有意义地相等。

    如果((响应==“y”)||(响应==“Y”)){

应该

if((response.equals("y"))||(response.equals("Y"))){

甚至更好

if((response.equalsIgnoreCase("y"))){
于 2012-11-29T22:37:41.913 回答
0

由于 java 是基于引用的,因此响应的 id 与“y”不同。你应该使用

 response.equals("y")
于 2012-11-29T22:37:41.897 回答