void foo() {
int a[5], c = 2;
for (int i = 0; i < 5; i++)
a[i] = 0;
int res = (c--, a[c]++, c++) + (c++, a[c]--, c--);
for (int i = 0; i < 5; i++)
cout << i << ": " << a[i] << endl;
}
上面的代码将打印:
0 : 0
1 : 1
2 : -1
3 : 0
4 : 0
代替:
0 : 0
1 : 1
2 : 0
3 : -1
4 : 0
之所以如此,是因为生成的代码中的操作顺序如下:
// first parentheses
c--;
a[c]++;
// second parentheses
c++;
a[c]--;
// and only then the last operation
res = c++ + c--;
问题是:为什么操作没有按预期运行(即一个括号中的所有三个操作,然后另一个括号中的所有三个操作)?