如何理解java中的 i 和i?
a 先自增,然后使用变量。 a 先使用,然后自增。
如果你有
a = 1;
然后
System.out.println(a++); // 1
现在是 2
System.out.println(++a); // 3