标签:style color 使用 sp strong on bs size nbsp
++ 自增运算符,例如a++,++a都等于a=a+1
-- 自减运算符,例如a--,--a都等于a=a-1
++a和a++的区别
++a是先操作,再使用
int a = ++a;
a++是先使用,再操作
int a = a++;
同理--a和a--也是同样的
标签:style color 使用 sp strong on bs size nbsp
原文地址:http://www.cnblogs.com/qianbi123/p/4067780.html