gpt4 book ai didi

c++ - shared_ptr 构造函数的异常安全

转载 作者:太空狗 更新时间:2023-10-29 20:59:59 28 4
gpt4 key购买 nike

Effective C++ 3/E 中,我读到:

This is exception unsafe code:

class Test { };
void foo(const std::shared_ptr<Test> &ptr, int i);
int bar();
...

foo(std::shared_ptr<Test>(new Test), bar());

Because compiler can implement like this:

  1. run new Test
  2. call bar() <-- if bar() throws exception, the object of Test allocated by new Test cannot be deleted.
  3. call constructor of std::shared_ptr<Test>
  4. call foo()

但在这种情况下,编译器可以知道存在内存泄漏。编译器不能做 delete如果抛出异常,是否自动?

此外,编译器会自动执行 delete在这种情况下:

Test *p = new Test;

that is implemented like this:

  1. call operator new to allocate memory
  2. call constructor of Test. If constructor throws exception, memory is automatically deleted.

与第二种情况不同,为什么编译器在第一种情况下不做?

最佳答案

编译器通常无法知道存在内存泄漏。一旦代码从 Test 的构造函数返回,编译器必须假设对象已经完全并且正确构造,这可能(而且经常)意味着构造函数在某处注册了一个指向它的指针,并且其他代码将期望找到它。

标准可以指定异常将导致delete 在完整的所有新对象上调用它通过的表达式。有许多历史悠久的甚至没有考虑到这一点的原因。而今天,它会可能会破坏太多现有代码。

该标准还可以对表达式的评估。这会消除很多问题未定义的行为,并使代码更具确定性(所以测试更可靠)。从历史上看,C 没有接受这个路由,因为它对优化有影响; C++ 保留了规则。

关于c++ - shared_ptr 构造函数的异常安全,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23290770/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com