- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
以下代码在gcc-4.7.1下不能编译,而是在clang-3.2下编译。哪一个遵循 C++11 标准?
struct X {
virtual ~X() = default;
};
struct Y : X {
virtual ~Y() = default;
};
gcc-4.7.1 提示:
looser throw specifier for 'virtual Y::~Y()'
error: overriding 'virtual X::~X() noexcept(true)'
显然,gcc-4.7.1 认为 X 的默认析构函数不是 nothrow,但 Y 的默认析构函数不是 nothrow。为什么是这样?任何人都可以引用标准中的正确位置吗?谢谢。
我在 stackoverflow 上看到了类似的问题,但没有看到引用标准的答案。
最佳答案
编译器陷入两难境地,原因如下:
(1) 未在函数声明中指定任何异常(即未使用 throw
或 noexcept
(相当于 noexcept(true)
)) 表示允许该函数抛出所有可能的异常:
(§15.4/12, emphasis mine) A function with no exception-specification or with an exception-specification of the form
noexcept(constant-expression)
where theconstant-expression
yieldsfalse
allows all exceptions. [...]
(2) 默认析构函数必须完全允许由其隐式定义直接调用的函数所允许的异常:
(§15.4/14, emphasis mine) An implicitly declared special member function (Clause 12) shall have an exception-specification. If f is an implicitly declared default constructor, copy constructor, move constructor, destructor, copy assignment operator, or move assignment operator, its implicit exception-specification specifies the type-id T if and only if T is allowed by the exception-specification of a function directly invoked by f’s implicit definition; f shall allow all exceptions if any function it directly invokes allows all exceptions, and f shall allow no exceptions if every function it directly invokes allows no exceptions.
(3) 当特殊成员(如析构函数)显式默认时,即当你使用=default
时,异常规范可选(参见下文“可能”的用法):
(8.4.2/2, emphasis mine) An explicitly-defaulted function [...] may have an explicit exception-specification only if it is compatible (15.4) with the exception-specification on the implicit declaration. [...]
标准中没有声明需要在显式默认析构函数中指定异常。
结论:因此,不指定显式默认析构函数的异常可以有两种解释:
不幸的是,GCC 在基类声明的情况下以一种方式(支持“无异常(exception)”)解决了这个困境,而在派生类的情况下以不同的方式解决了这个困境(支持“所有异常(exception)”那里)。
我相信对这种公认的模棱两可的情况最自然的解释是假设 (2) 和 (3) 覆盖 (1)。 标准没有这么说,但它应该这么说。在这种解释下,Clang 似乎就在这里。
关于c++ - 默认析构函数 nothrow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11497252/
使用 noexcept 等修饰符的目的是什么? , __declspec(nothrow) , throw() , __attribute__(nothrow)可能还有一些具有不同的语义、不同的编译器
以下代码在gcc-4.7.1下不能编译,而是在clang-3.2下编译。哪一个遵循 C++11 标准? struct X { virtual ~X() = default; }; struct Y
是否有可能在编译时或至少在使用 pc-lint 的静态分析期间强制使用 std::nothrow 严格使用运算符 new?使用 c++ (GCC) 4.8.3 20140911 (Red Hat 4.
为什么我不能让 operator++() 不抛出? 这可能是使用后缀++ 运算符(相对于前缀++ 运算符)的少数优势之一。 例如,这段代码不编译 class Number { public:
这个问题在这里已经有了答案: Will using new (std::nothrow) mask exceptions thrown from a constructor? (3 个答案) 关闭
我想在我的一些返回对象引用的成员函数上应用 __declspec(nothrow)。例如,我想将它添加到此函数(在 MyClass.h 中): CMyClass& operator= ( IN UIn
我试图指定一个函数是 nothrow每当 Foo 的析构函数时不扔。我可以通过使用类型特征 std::is_nothrow_destructible<> 来做到这一点.我怎样才能直接做到这一点?我试过
阅读前this question ,我从来没有认真对待过异常处理。现在我看到了必要性,但仍然觉得“编写异常安全代码非常困难”。 在该问题的已接受答案中查看此示例: void doSomething(T
在 Abrahams 创建的 Exception Safety 中,我们拥有三个保证:基本保证、强保证和不抛出保证。我可以说如果我有一个代码库使用 nothrow 作为"new"并且 noexcept
我有以下代码,但无法编译: int *p = new(nothrow) int; delete (nothrow) p; //Error 我得到的错误是: error C2440: 'delete'
std::nothrow的理想用法是什么? 最佳答案 我只会将它用作优化(或代码简化),否则我会在使用常规 new 时立即放置一个 try-catch block ,捕获 std::bad_alloc
在使用 CUDA 的内核调用中使用 new 时,检查内存分配是否成功的最佳方法是什么?如果没有办法继续执行内核,即使在内存分配失败的情况下,是否有类似于 (nothrow) 的东西? 谢谢! 最佳答案
我想写一个模板类MyClass接受 normal 和 noexcept 签名。例如MyClass和 MyClass . 这是我试过的: template struct IsNoThrow; templ
我有一个用例,我想使用 placement new 但也想确保 new 操作不会抛出。 我想我想要像下面这样的东西(注意这不能编译)但我不确定具体怎么做。 char buf1[100];
#include int main() { int *xx = new (std::nothrow) int[2]; if(xx == NULL) { exi
我有一个 C++ 程序,其中重载了 new 运算符。问题是如果我在 new 运算符中的分配失败,我仍然会调用构造函数。我知道我可以通过抛出 std::bad_alloc 来避免这种情况,但我不想那样做
如果一个类型有一个不会失败的交换函数,这可以让其他函数更容易提供 strong exception safety guarantee .这是因为我们可以首先完成所有可能会失败的函数工作,然后使用非抛出
在 C++ 的工作草案中阅读此内容。 T* p1 = new T; // throws bad_alloc if it fails T* p2 = new(nothrow) T; // returns
我正在查看一些 gcc 属性列表,我发现了这个引起了我的注意: nothrow The nothrow attribute is used to inform the compiler that a
这个问题在这里已经有了答案: nothrow or exception? (6 个回答) 关闭9年前。 根据C++ reference ,您可以通过以下方式新建对象: MyClass * p1 = n
我是一名优秀的程序员,十分优秀!