将字符串放入条件语句的正确方法是什么? 我试过这个,但它不会打印x。
String c = "c" ,d = "d";
Scanner in = new Scanner(System.in);
String selection = in.next();
if ( c == selection){
System.out.println("x");
假设我输入c。
答案 0 :(得分:0)
使用str.equals(<string to compare>);
因此,在您的情况下,if(c.equals(selection))
不是if(c==selection)