++a:如果++在前就会先把a+1。 a++:如果++在后就会先a然后在执行++的操作。 代码: int a = 1; System.out.pritln(++a); //输出2 int s = 1; System.out.println(s++); //输出1 System.out.println(s); //上次执行的后++,这次才输出2
本文共 236 字,大约阅读时间需要 1 分钟。
++a:如果++在前就会先把a+1。 a++:如果++在后就会先a然后在执行++的操作。 代码: int a = 1; System.out.pritln(++a); //输出2 int s = 1; System.out.println(s++); //输出1 System.out.println(s); //上次执行的后++,这次才输出2
转载于:https://www.cnblogs.com/chancy/p/9166150.html