阅读量:0
在Java中,对整数进行自增和自减运算可以使用自增运算符(++)和自减运算符(–)。这两个运算符可以分别放在变量的前面或者后面来实现不同的效果。
- 自增运算:
int a = 5; a++; // 等价于a = a + 1; System.out.println(a); // 输出6 int b = 5; ++b; // 等价于b = b + 1; System.out.println(b); // 输出6
- 自减运算:
int c = 5; c--; // 等价于c = c - 1; System.out.println(c); // 输出4 int d = 5; --d; // 等价于d = d - 1; System.out.println(d); // 输出4
在使用自增和自减运算时,放在变量前面和后面的区别在于,前置运算符会先进行自增或自减操作,然后再使用变量;而后置运算符会先使用变量的值,然后再进行自增或自减操作。