- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
考虑以下程序:
#include <type_traits>
struct Thrower
{
~Thrower() noexcept(false) { throw 1; }
};
struct Implicit
{
Thrower t;
};
static_assert(!std::is_nothrow_destructible<Implicit>::value, "Implicit");
struct Explicit
{
~Explicit() {}
Thrower t;
};
static_assert(!std::is_nothrow_destructible<Explicit>::value, "Explicit");
使用g++-4.8.1
,Explicit
上出现静态断言失败——似乎认为~Explicit()
是 noexcept
。这不符合我的期望。根据§12.4.3:
A declaration of a destructor that does not have an exception-specification is implicitly considered to have the same exception-specification as an implicit declaration
这里有趣的是 Implicit
的检查似乎是根据我对 §15.4.14 的解释(通过 §12.4.7)进行的。
...If f is an...destructor...it's implicit exception-specification specifies...f has the exception-specification
noexcept(true)
if every function it directly invokes allows no exceptions.
g++-4.7
缺少 is_nothrow_destructable
,我编写了自己的代码来检查 4.7 中的行为。该程序似乎编译得很好。我保留完全错误的权利和我困惑的根源:
template <typename T>
struct is_nothrow_destructible
{
static constexpr bool value = noexcept(std::declval<T>().~T());
};
TL;DR:为什么g++-4.8.1
认为显式声明的没有异常规范的析构函数总是 noexcept(true)
?
更新:我打开了一个错误:57645 .如果你真的需要解决这个问题,你可以在析构函数中添加一个异常规范(就像示例中的 Thrower
一样)。
最佳答案
TL;DR: Why does g++-4.8.1 think that an explicitly-declared destructor with no exception specification is always
noexcept(true)
?
因为它有错误?
您对标准的解释是正确的,并且 Clang 正确地实现了它(断言不会触发)。
f
has the exception-specificationnoexcept(true)
if every function it directly invokes allows no exceptions.
析构函数直接调用所有子对象的析构函数:
§12.4 [class.dtor] p8
:
After executing the body of the destructor and destroying any automatic objects allocated within the body, a destructor for class
X
calls the destructors for X’s direct non-variant non-static data members, [...].
关于c++ - g++-4.8.1 认为显式声明的没有异常规范的析构函数总是 noexcept(true),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17177386/
我开始考虑在我 future 的项目或重构中实现控制反转容器,我想知道在正确设计依赖项时哪些原则(除了 GoF 模式)可能需要牢记在心。假设我需要构建一个简单的控制台应用程序,如果它可以访问互联网,它
假设我有一个 RxC contingency table 。这意味着有 R 行和 C 列。我想要一个维度为 RC × (R + C − 2) 的矩阵 X,其中包含行的 R − 1 “主效应”以及列的
我正在尝试使用 DKMS 为正在运行的内核 (4.4) 构 build 备树覆盖。我天真的 Makefile 如下: PWD := $(shell pwd) dtbo-y += my-awsome-o
我有一个 sencha touch 项目。我是用 phonegap 2.9 构建的,并且可以正常工作 device.uuid 返回到设备 ID。当我尝试使用 3.1 device.uuid 构建时抛出
我在安装了 Xcode 4.5.1 的 Mt Lion 上运行。 默认情况下,当我构建并部署到 iOS 5.1 设备时,显示会在我旋转设备时旋转,但当我部署到 iOS 6 模拟器或运行 iOS 的 i
我正在尝试使用 Google Analytics Reporting API v4 构建多折线图。 一张图表,其中我按每天的 session 计数为每个设备(台式机/平板电脑/移动设备)设置了一条线。
我一生都无法使用 xcode 组织者“自动设备配置”中的“团队配置配置文件”在 xcode 4.0.1 中将我的应用程序构建到我的 iPad 上。 该应用程序完美地构建到模拟器,但当我构建到 iPad
我是一名优秀的程序员,十分优秀!