考虑以下代码:
#include <iostream>
struct Foo
{
Foo() : bar( 0 ) {}
int bar;
};
int main()
{
Foo foo;
++(foo.bar);
std::cout<< foo.bar << std::endl;
system("pause");
return 0;
};
为什么foo.bar
评估为 1?
中的括号不会(foo.bar)
创建一个未命名的(r 值)表达式,然后递增?