标签:
如果有表达式 a = i++ 它等价于 a = i ; i = i + 1;
如果有表达式 a = ++i 它等价于 i = i + 1; a = i;
i++与++i的区别
原文地址:http://www.cnblogs.com/jone-liu/p/4964213.html