class Demo自增问题 {
public static void main(String[] args) {
// int x=3;
// for (int i=0;i<4 ;i++ ) {
// x=x++;
//
// }
int x=3;
int a=x++; //如果这里x=x++;那么x会被赋值成3 打印x也会是3
x=++x; // 这里x先做自增 x就会被改变
System.out.println(a);
System.out.println(x);
}
}只是运行了下实验了,但是并不能很好的解释 |
|