我在网上看过,所有的教程/问题都指出了这一点。我不明白为什么这不起作用。任何帮助将非常感激。谢谢
import java.util.*;
public class test {
static Scanner userInput = new Scanner(System.in);
public static void main(String[] args) {
String textEntered = userInput.next();
if (textEntered == "hello") {
System.out.println("Hello to you too!");
}
}
}
我输入“你好”,但没有打印任何内容。我也试过 next() 和 nextLine();