开关盒不打印到控制台吗?

时间:2020-06-20 19:24:27

标签: java string methods switch-statement stringbuffer

public static void startGame(){
    //int stone = 0, diamond = 0, iron = 0, gold = 0;
    StringBuffer blockys = new StringBuffer("\uD83E\uDDCD ▯▯▯▯▯▯▯▯▯");

    Scanner input = new Scanner(System.in);

   
    System.out.println("\uD83E\uDDCD " + "▯▯▯▯▯▯▯▯▯" + "\n");

    String user = input.next();
    boolean game = true;

    while(game) {
        switch (user) {
           //Code

            case "M":
                System.out.println(mine(blockys));
                user = input.next();
                break;

    }
}

public static StringBuffer mine(StringBuffer blockys){
    addOre(blockys);
    blockys.delete(2, 3);

    int randBlock = (int) (Math.random() * 101) + 0;

    //Code
   
    else{
        //add bomb 5% chance
        blockys.append("\uD83E\uDDE8");
    }


    return blockys;
}



public static void addOre(StringBuffer blockys){
    String str = blockys.substring(2, 3);

    switch(str){
        //Code

        case "\uD83E\uDDE8":
            System.out.println("You mined a bomb! BOOOOOOOM! You died!");
            System.exit(0);
            break;
    }
}

在我的方法addOre中,当大小写为“ \ uD83E \ uDDE8”时,它不会输出到控制台,也不会终止程序。当遇到这种情况时,它将完全忽略它,然后程序继续。我尝试将其设置为默认值会失败,并且在各种情况下尝试使用不同的变量,但从未打印任何内容。我该如何解决它以便打印并在以后终止?

1 个答案:

答案 0 :(得分:0)

这是一个“长度”问题。

考虑以下代码:

public static void main(String[] args) {
    System.out.println("Hello".substring(2, 3).length());
    System.out.println("\uD83E\uDDE8".length());
}

将输出:

1
2
那是什么问题呢?

当您使用子字符串时,将始终返回长度为1的字符串。

而在另一端,在您的切换情况下,您正在尝试测试长度为2的字符串。

1!= 2:条件从未满足