c – 以逗号分隔的表达式调用析构函数

前端之家收集整理的这篇文章主要介绍了c – 以逗号分隔的表达式调用析构函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
考虑以下示例程序:
#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类型).

然而,它的生命周期并未受到影响:正如任何临时表演一样,它在全表达结束时被破坏(即这里的分号).

原文链接:https://www.f2er.com/c/120066.html

猜你在找的C&C++相关文章