java中的a++与++a的区别

++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
posted @ 2018-06-11 11:07  花儿为何那样红  阅读(1705)  评论(0编辑  收藏  举报