"--" operation examples are as follows:
int i = 1; int j1 = i--; // 先将i的原始值(1)赋值给变量j1(1),然后i变量的值减1 int j1 = --i; // 先将i变量的值减1,然后将i的当前值(0)赋值给变量j1(0)
Recommended tutorial: javaQuick Start
The above is the detailed content of How to operate '--' in Java operator. For more information, please follow other related articles on the PHP Chinese website!