- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
#include <iostream>
struct A{
A(int){
}
~A(){
std::cout<<"A destroy\n";
}
};
struct B{
B(int){
std::cout<<"B construct\n";
}
~B(){
std::cout<<"B destroy\n";
}
};
struct Content{
A const& a;
};
struct Data{
Data():c{0},b{0}{
}
Content c;
B b;
};
int main(){
Data d;
std::cout<<"exit\n";
}
GCC的输出是:
B construct
A destroy
exit
B destroy
Clang 提示这段代码格式不正确。
Here是两个编译器的性能。
A temporary expression bound to a reference member in a mem-initializer is ill-formed.
c
类(class)
Data
不是引用。
Clang
将其视为使引用成员绑定(bind)到临时表达式的引用成员的任何初始化都发生在成员初始化程序中,都是格式错误的。所以我举了一个例子来检查是否
Clang
也这样觉得。
struct A{
int const& rf;
};
struct B{
B():a(new A{0}){}
A* a;
};
int main(){
B b;
delete b.a;
}
它
gives警告但不是错误。所以,我不确定
Clang
也这样觉得。我不知道它是如何理解规则的?
GCC
不遵守标准。因为破坏临时对象的顺序。
Temporary objects are destroyed as the last step in evaluating the full-expression ([intro.execution]) that (lexically) contains the point where they were created.
c{0}
.但是,
GCC
在子对象
b
之后销毁临时对象已建成。我认为这是第一个问题。
The temporary object to which the reference is bound or the temporary object that is the complete object of a subobject to which the reference is bound persists for the lifetime of the reference
The exceptions to this lifetime rule are:
- A temporary object bound to a reference parameter in a function call ([expr.call]) persists until the completion of the full-expression containing the call.
- A temporary object bound to a reference element of an aggregate of class type initialized from a parenthesized expression-list ([dcl.init]) persists until the completion of the full-expression containing the expression-list.
- The lifetime of a temporary bound to the returned value in a function return statement ([stmt.return]) is not extended; the temporary is destroyed at the end of the full-expression in the return statement.
- A temporary bound to a reference in a new-initializer ([expr.new]) persists until the completion of the full-expression containing the new-initializer.
也不是,也就是说,我的第一个例子不是上面列表中列出的异常(exception)。因此,临时对象的生命周期应该与子对象a
的生命周期相同。子对象的c
对象b
,它们都具有与b
相同的生命周期.那么,为什么GCC
这么早就销毁临时对象?临时对象不应该和对象一起销毁吗b
在main
?我想这里是GCC
的第二期.不知道怎么Clang
处理临时对象,因为它之前给出了错误。
问题:
是 Clang
报告第一个示例的错误对吗?如果是正确的,[class.init#class.base.init-8] 是否应该更清楚?
如果 Clang
过度理解[class.init#class.base.init-8],是性能GCC
破坏临时对象被认为是一个错误?或者,exceptions
忽略这个案例?即使异常(exception)忽略了这种情况(引用绑定(bind)发生在成员初始化器中),我仍然认为GCC
有错,临时不应该在构造c{0}
之前排序的完整表达式(b
)的末尾被破坏吗? .
如何解读以上这些问题?
最佳答案
Clang 是正确的,但是是的,标准可能更清晰。
[class.temporary]/6的效果| (通过引用绑定(bind)延长临时表达式生命周期)是为了确保除了列出的异常之外,绑定(bind)到引用的临时对象的生命周期延长到引用的生命周期。但是,当引用是类非静态数据成员时,引用的生命周期在绑定(bind)点(这发生在(可能是默认的)构造函数中)不是静态已知的,因此临时可以延长生命周期。由于非静态数据成员不包括在异常列表中,因此必须通过其他方式防止这种情况发生,并且确实可以通过 [class.base.init] 中的 IF 案例来防止。 :
8 - A temporary expression bound to a reference member in a mem-initializer is ill-formed.
11 - A temporary expression bound to a reference member from a default member initializer is ill-formed.
main
A(int)
~A()
B(int)
D()
exit
~B()
一个有趣的情况是,包含引用非静态数据成员的类是一个聚合,因此有资格通过列表初始化语法进行聚合初始化(示例改编自
CWG 1815):
struct A {};
struct C { A&& a = A{}; };
C c1; // #1
C c2{A{}}; // #2
C c3{}; // #3
C c4 = C(); // #4
这里
#1
和
#4
格式不正确,尽管 gcc 和 MSVC 错误地接受。
#3
根据 [class.base.init]/11 标准的当前措辞格式错误,但这与
CWG 1815 中所述的委员会的意图相反:
Notes from the February, 2014 meeting:
CWG agreed with the suggested direction, which would treat #3 in the example like #2 and make the default constructor deleted
#3
将是有效的,并导致生命周期延长;
gcc and clang do so, but MSVC fails to perform lifetime extension in either #2
or #3
; icc performs lifetime extension for #2
only .奇怪的是,clang 报告了一个诊断,声称尽管这样做了,但它不会执行生命周期延长!:
warning: sorry, lifetime extension of temporary created by aggregate initialization using default member initializer is not supported; lifetime of temporary will end at the end of the full-expression [-Wdangling]
c3
是一个完整的对象;如果它是成员对象(如您的第一个示例中的
c
)[class.base.init] 将明确适用并且
c3
也将是不正确的。
关于c++ - 在成员初始化程序中创建临时对象时销毁它的点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65445422/
我有一个包含数字和整数的文件,我只想读取整数, 如果它们令人讨厌,请忽略宏,但是我只需要有整数,但是我必须确保还要读取字符串,然后忽略它们 我必须在这里修改什么: #include #include
我有一个这样格式化的txt文件: MyDepartureTown MyDestinationTown 123.45 Vehicle 12 我正在尝试将数据导入到我的 C 程序中。这是我用来实现这一目标
我创建了一个简单的文件,使用 flex,它生成了一个文件 lex.yy.c,现在,我想把它放到 C++ 程序中。 %{ #include %} %% stop printf("Stop co
我的一个程序用 c++ 代码生成一个大文件。有没有办法从另一个C++类调用将生成的代码插入其中? 这是一个小例子,可以清楚地说明我想要实现的目标。 生成的文件示例: FirstClass first
我需要了解我的程序“检查输入十六进制消息的第三个位置” 程序将采用十六进制值输入消息。例如0x0123456789abcdef 程序将检查输入消息的第三个位置,即 0 现在程序将采用另一条十六进制值的
当我将输入从输入文件重定向到 yacc 程序时,在它完成解析文件后,我希望 yacc 解析器打印其所做操作的摘要。如果我通过键盘输入内容然后按 Ctrl+D,我希望它执行相同的操作。有办法做到这一点吗
我正在扫描该文件,但它有两种不同的结构。 文件: ParisRoubaix "Marco MARCATO" 33 UAD ITA 26 5:43:31 ParisRoubaix "Sam BEWLEY
我想将winsock2.lib 添加到我的程序中,但不希望将其包含到最终的可执行文件中。有什么方法可以让我动态加载与winsock2关联的dll吗?如果没有,是否有任何 dll(Windows 附带)
我尝试了一个基本程序来将数据从数据库表检索到java程序中。编译结束后,运行代码时出现异常。控制台中没有显示错误。显示异常消息 import java.sql.*; public class clas
我想用 C++ 创建一个跨平台安装程序。它可以是任何压缩类型,例如 zip 或 gzip,像普通安装程序一样嵌入程序本身。我不想在不同的平台、linux 和 windows 上创建很多更改。如何跨平台
每次尝试用鼠标输入两个顶点时,我都会崩溃。我最近改变了组织每个形状的方式,以确保新形状与旧形状重叠。 这个项目的想法是制作各种交互式 Canvas 。用户可以在直线、三角形和矩形之间进行选择,然后选择
我想在我的程序中显示以下文本。当我在 python 中粘贴以下文本时,它会将反斜杠解释为转义序列并弄乱我的 ascii 艺术..任何解决这个问题的想法极客。这是我的文本想出现在我的节目中 _ _
我正在尝试加载名为 Tut16_ReadText.txt 的文件,并使其运行程序以输出其重或轻。 我收到了粘贴在下面的错误。我无法抽出时间让这个程序运行。谁能解释一下我必须做什么才能使这个程序正常工作
我想使用命令行将列表作为参数传递,例如: $python example.py [1,2,3] [4,5,6] 我希望第一个列表 [1,2,3] 成为 first_list,[4,5,6] 成为 se
在分析 C# 应用程序时,我发现名为“ThePreStub”的系统 (?) 方法中有相当多的 CPU 使用率。这是什么? 最佳答案 参见:CLR Inside out - The Performanc
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 9 年前。 Improve this qu
我正在用 Python 开发一个游戏,想知道如何给它自己的图标。我使用的是 Windows 计算机,没有安装 Python 的额外东西。哦,我也在使用 3.3 版,这甚至可能吗? P.S 我在 Sta
我正在使用 tkinter 使用 Python 开发一个项目,该项目将允许对 IP 地址进行地理定位。我有原始转换,我可以获取 IP 地址并知道城市、州、国家、经度、纬度等。我想知道是否有任何方法可以
我编写了一个程序,您可以在其中选择任意数字并将其与任意数字的幂相关联。代码运行正常,直到它到达某个部分,然后我必须输入一个字符以使其移动到代码的下一部分。这就是我的意思: #include int
我正在编写“HACKING Art Of Exploitation”一书练习 Convert2.c 第 61 页。 这是我的代码。下面是我的问题。 #include void usage(char
我是一名优秀的程序员,十分优秀!