任何人都可以告訴我輸出更改的原因。遞增和遞減更改對象值
public class Demo {
public void demo()
{
Integer y = 567;
Integer x = y;
System.out.println(x + " " + y);
System.out.println(y == x);
y++;
System.out.println(x + " " + y);
System.out.println(y == x);
y--;
System.out.println(x + " " + y);
System.out.println(y == x);
}
public static void main(String args[])
{
Demo obj = new Demo();
obj.demo();
}
}
輸出:
567 567
true
567 568
false
567 567
False
這裏爲什麼我得到最終假的。
嘗試y.equals(x)而不是==。 – gcandal