gpt4 book ai didi

c++ - new (nothrow) 运算符的实际含义是什么,我们为什么要使用它?

转载 作者:太空狗 更新时间:2023-10-29 21:21:24 25 4
gpt4 key购买 nike

在 C++ 的工作草案中阅读此内容。

T* p1 = new T; // throws bad_alloc if it fails
T* p2 = new(nothrow) T; // returns 0 if it fails

但是在什么情况下 new 运算符会抛出(或者在 new(nothrow) 的情况下返回 0)。

最佳答案

In what cases [does] the new operator throw (or returns 0 in case of new(nothrow))?

当没有足够的可用内存来分配对象时,
或者如果新对象的构造函数本身抛出异常
(在这种情况下,即使是 new 的 nothrow-variant 也会抛出,
IE。 nothrow 仅用于内存问题)

关于c++ - new (nothrow) 运算符的实际含义是什么,我们为什么要使用它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22566154/

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