让变量X == X 输出结果为 false
Please finish the declaration of variable x in the bold line below so that the next line prints “false”.
public class Reflexive {
public static void main(String[] args) throws Exception {
<typeX> x = <valueX>;
System.out.println(x == x);
}
}