考虑以下示例程序:
#include <iostream> using namespace std; struct t { ~t() {cout << "destroyed\n"; } }; int main() { cout << "test\n"; t(),cout << "doing stuff\n"; cout << "end\n"; }
我从GCC 4.9.2获得的输出是:
test doing stuff destroyed end
cpp.sh链接:http://cpp.sh/3cvm
但是根据关于逗号运算符的cppreference:
In a comma expression E1,E2,the expression E1 is evaluated,its result is discarded,and its side effects are completed before evaluation of the expression E2 begins
我希望在cout<<之前调用~t() “做东西” 这是标准行为吗?如果是这样,它在标准中的定义是什么?
解决方法
“其结果被丢弃”意味着忽略子表达式的值(此处为t类型).
然而,它的生命周期并未受到影响:正如任何临时表演一样,它在全表达结束时被破坏(即这里的分号).