这里有个详细介绍,希望对你有帮助 http://www.51testing.com/html/12/n-830112.html作者: lixun8919 时间: 2013-3-26 10:49
应该是这样理解的:1.首先把x的值“0”提取出来,放到临时存储区。
2.再在运算区把x的值“0”自加为“1”;
3.把运算区的“1”赋值给x;此时x为“1”;
4.再把临时存储去的“0”赋值给x;此时x为“0”。作者: 曾祥旭 时间: 2013-3-26 10:52
public class Test {
public static void main(String[] args) {
int x = 0;
x = x++;
System.out.println(x);