在Java中,++是一个一元操作符,它用于将操作数(变量)的值增加1。有两种形式:
++
这是一个简单的例子:
int a = 5; int b = ++a; // a的值变为6,b的值也为6 int c = a++; // a的值变为7,c的值为6