Java字符串比较ALWAYS返回false

我正在用
java编写一个程序,它将使用数字和字母生成一组随机字符,逐个输出,在每个字符后清除控制台,将字符附加到字符串,并要求用户重复该序列.

我的问题是,如果程序说’a’并要求输入,即使输入’a’,它也会返回错误.以下是生成和测试字符串的代码:

public void generateSeq() {
        try {
            Random rand = new Random();
            for (int i = 0; i < numChars; i++) {
                Robot bot = new Robot();
                c = characters.charAt(rand.nextInt(characters.length()));
                System.out.print(c);
                Thread.sleep(1000);
                bot.keyPress(KeyEvent.VK_CONTROL);
                bot.keyPress(KeyEvent.VK_L);
                bot.keyRelease(KeyEvent.VK_CONTROL);
                bot.keyRelease(KeyEvent.VK_L);
                full = full + String.valueOf(c);
            }
        } catch (InterruptedException e) {
            System.out.print("Error 1. Email me @ xxx@gmail.com.");
        } catch (AWTException e) {
            System.out.print("Error 2. Email me @ xxx@gmail.com.");
        }
        testSeq();
}

这是测试方法:

public void testSeq() {
        Scanner sc = new Scanner(System.in);
        System.out.print("Your attempt: ");
        user = sc.nextLine();

        if (user == null ? full == null : user.equals(full)) {
            System.out.println("Correct! Trying next combo....");
            numChars++;
            generateSeq();
        } else {
            System.out.println("Incorrect! Restarting game...");
            start();
        }
}

最佳答案 在开头,当full为null时,您尝试向其添加第一个字符.但这是String Conversion,它将null转换为String“null”,而你的完整变量现在以“null”开头.

首先将它初始化为空字符串(“”),位于generateSeq的顶部.

使用三元运算符没有任何问题,但现在字符串不会为空;他们在最糟糕的时候会是空的.现在呼叫等于自己就足够了.

if (user.equals(full))

此外,您可能希望生成一次Random对象作为实例变量,而不是每次调用generateSeq时都创建一个新的Random对象.

点赞