以下行显示在eclipse的分配窗格中:
Alloc Order Allocation Size Allocated Class
509 12 java.lang.Integer
它引用了这行java代码:
MyInteger++;
我稍微改了一下,但仍然会导致分配。
MyInteger=MyInteger+1;
MyInteger=MyInteger+MyIntegerIncrementor;
为什么这些代码行会导致分配?