简单使用
1.++ 自增运算符。如a++,++a,都等价于a = a+1
2.自减运算符。如a- -,- -a,都等价于a = a-1
++a和a++的区别
先操作,再使用
Int a = ++a;
先使用,后操作。
Int a = a++;
面试题
i=1;
i++; /* i → 2 */
j = i++ ; /*j → 2 and then i → 3
j =++i ; /* i → 4 and then j → 4
j = i-- /* j → 4 and then i → 3