i++相当于
int operation++(int &i)
{
int tmp=i;
++i;
return tmp;
}
可以C/C++中 printf("%d",i++);与printf("%d",++i); cout<<i++; 与cout << ++i; 看看区别.