对象销毁和委托构造函数

发布于 2025-01-11 06:40:22 字数 816 浏览 0 评论 0原文

根据关于委托构造函数的这个问题,当第一个构造函数完成时,将调用析构函数。
这与以下代码一致:

struct test {
    test() { std::cout << "default constr\n"; }
    test(int) : test() { std::cout << "argument constr\n"; throw int{}; }
    ~test() { std::cout << "destr\n"; }
};

int main()
{
    try {
        test t{3};
    } catch(...)
    {
        std::cout << "caught\n";
    }
}

输出:

default constr
argument constr
destr
caught

但是,Stroustrup 在他的书中(第 4 版,第 503 页)说了以下内容:

在其构造函数完成之前,对象不会被视为已构造 (...)。当使用 委托构造函数,在委托构造函数完成之前,该对象不被视为已构造 完成——仅完成委托构造函数是不够的。析构函数不会 调用一个对象,除非它的原始构造函数完成。

是我误读了还是他有别的意思?

According to this question about delegating constructors, a destructor is called when the first constructor has finished.
This is consistent with the following code:

struct test {
    test() { std::cout << "default constr\n"; }
    test(int) : test() { std::cout << "argument constr\n"; throw int{}; }
    ~test() { std::cout << "destr\n"; }
};

int main()
{
    try {
        test t{3};
    } catch(...)
    {
        std::cout << "caught\n";
    }
}

output:

default constr
argument constr
destr
caught

But, Stroustrup says the following in his book (4th edition, page 503):

An object is not considered constructed until its constructor completes (...). When using a
delegating constructor, the object is not considered constructed until the delegating constructor
completes – just completing the delegated-to constructor is not sufficient. A destructor will not be
called for an object unless its original constructor completed.

Am I misreading this or does he mean something else?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橘亓 2025-01-18 06:40:22

我是不是看错了

我不这么认为。

或者他还有别的意思吗?

我不这么认为。

据我所知,这似乎是书中的一个错误。本书的描述可能基于原始的委托构造函数 提案。该行为在提案的后续修订中发生了变化。

Am I misreading this

I don't think so.

or does he mean something else?

I don't think so.

This seems to be an error in the book as far as I can tell. The book's description may be based on the original delegating constructors proposal. The behaviour was changed in following revisions of the proposal.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文