i++ 先加后自增 先运行后自增
++i 先自增后加 先自增后运行
int k=1; int j; j=++k; System.out.println(j+"-"+k);
输出2-2
int k=1;int j;j=k++;System.out.println(j+"-"+k);
输出1-2