我對java中的自動裝箱拆箱感到困惑。請參閱我的以下兩個progarm。Autoboxing wth ++, - java中的運算符
Integer x = 400;
Integer y = x;
x++; x--;
System.out.println((x==y));
The output is false.
I known why the output is false. Because of autoboxing x.
Integer x = 100;
Integer y = x;
x++; x--;
System.out.println((x==y));
The output is true.
But the program is same as the upper. Why the output is true?
Please explain me detail.
非常感謝你。
@TBZ:使用@在給某人發表評論時,會給他們一個通知。 –
Keppil
@Keppil:好的。謝謝。 – T8Z
@Keppil只是一個供參考,通知系統現在不管你:) –