- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我写了 this article并得到了一些让我感到困惑的评论。
这基本上归结为我看过 T2
仅用作模板参数,并错误地得出结论,因此我可以借此机会进行前向声明:
struct T2;
struct T1
{
std::auto_ptr<T2> obj;
};
如果我不继续定义 T2
,这将调用 UB在同一个 TU 的某个地方,因为 std::auto_ptr<T2>
来电delete
在其内部T2*
, 和 calling delete
on an pointer to an object of an incomplete type whose complete type has a non-trivial destructor is undefined :
[C++11: 5.3.5/5]:
If the object being deleted has incomplete class type at the point of deletion and the complete class has a non-trivial destructor or a deallocation function, the behavior is undefined.
我碰巧使用的 GCC 工具链 — v4.3.3 (Sourcery G++ Lite 2009q1-203) — 很友好地告诉我:
note: neither the destructor nor the class-specific operator delete will be called, even if they are declared when the class is defined.
尽管在其他 GCC 版本中似乎很难获得此诊断信息。
我的提示是,如果 delete
会更容易发现这样的错误。指向不完整类型实例的指针是格式错误的而不是UB,但这似乎是一个难以解决的实现问题,所以我理解为什么它是UB。
但后来有人告诉我,如果我使用 std::unique_ptr<T2>
相反,这将是安全且合规的。
n3035 据称在 20.9.10.2 说:
The template parameter
T
ofunique_ptr
may be an incomplete type.
我只能在 C++11 中找到:
[C++11: 20.7.1.1.1]:
/1 The class template
default_delete
serves as the default deleter (destruction policy) for the class templateunique_ptr
./2 The template parameter
T
ofdefault_delete
may be an incomplete type.
但是,default_delete
的operator()
确实需要一个完整的类型:
[C++11: 20.7.1.1.2/4]:
IfT
is an incomplete type, the program is ill-formed.
我想我的问题是这样的:
我文章的评论者是否正确地说,仅由以下代码组成的翻译单元是格式良好且定义良好的?还是他们错了?
struct T2;
struct T1
{
std::unique_ptr<T2> obj;
};
如果它们是正确的,编译器将如何实现这一点,因为它是 UB 有充分的理由,至少在 std::auto_ptr
时是这样。用过吗?
最佳答案
根据 GOTW #100 中的 Herb Sutter 所说, unique_ptr
在不完整类型方面遇到与 auto_ptr
相同的问题。
...although both unique_ptr and shared_ptr can be instantiated with an incomplete type, unique_ptr’s destructor requires a complete type in order to invoke delete...
他的建议是在头文件中声明包含类的析构函数(即 T1
),然后将其定义放在 T2
为完整的类型。
// T1.h
struct T2;
struct T1
{
~T1();
std::unique_ptr< T2 >;
};
// T1.cpp
#include "T2.h"
T1::~T1()
{
}
关于c++ - 与 auto_ptr 声明不同,unique_ptr 声明是否在其模板类型为不完整类型时是明确定义的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12764952/
我在 linux 上工作。我对windows没有太多想法。 windows中文件的权限是如何组织的?我们在unix中是否有像chmod这样的api来更改权限? 最佳答案 对于 Windows,有一个名
应用程序编程接口(interface) (API) 是一组用于访问基于 Web 的软件应用程序的编程指令和标准。 如果出现 ,有人可以向我解释一下吗?谷歌地图 或 优酷 这是API哪个是softwar
我有两个应用程序,A 和 B,它们使用 android 库 C。B 有一个服务 A 想通过 C 使用,例如 在我的库中有一个类试图将它绑定(bind)到服务,
我正在正常或安全模式下启动相机应用程序,具体取决于使用我的应用程序执行的手势,但一旦用户选择应用程序并点击始终,则没有选项可以更改默认值,即使是从 Android 的设置菜单中也是如此. camera
我有一个数据集,本质上是一个稀疏二进制矩阵,表示两个集合的元素之间的关系。例如,让第一组是人(用他们的名字表示),例如像这样的东西: people = set(['john','jane','mike
何为pythonic? pythonic如果翻译成中文的话就是很python。很+名词结构的用法在中国不少,比如:很娘,很国足,很CCTV等等。 我的理解为,很+名词表达了一种特殊和强调的意味。
某些 Prolog 目标的确定性成功问题已经一次又一次地出现在 - 至少 - 以下问题: Reification of term equality/inequality Intersection an
我指的是 DateTime.TryParse(string s, out DateTime result) 重载,它尝试从字符串中解析 DateTime - 没有特定的格式正在指定。 我可以从http
2020 年 04 月 10 日,《中共中央国务院关于构建更加完善的要素市场化配置体制机制的意见》正式公布,将数据确立为五大生产要素(土地、资本、劳动力以及技术)之
有人可以解释一下 NSNotification 的 addObserver 函数中 notificationSender 的用途吗? 这是 Apple 文档的解释: notificationSende
我是一名优秀的程序员,十分优秀!