Why do un-named C++ objects destruct before the scope block ends?(为什么未命名的 C++ 对象会在作用域块结束之前销毁?)
问题描述
以下代码打印一、二、三.所有 C++ 编译器都希望这样吗?
The following code prints one,two,three. Is that desired and true for all C++ compilers?
class Foo
{
const char* m_name;
public:
Foo(const char* name) : m_name(name) {}
~Foo() { printf("%s
", m_name); }
};
void main()
{
Foo foo("three");
Foo("one"); // un-named object
printf("two
");
}
推荐答案
一个临时变量一直存在到创建它的完整表达式的结尾.你的变量以分号结尾.
A temporary variable lives until the end of the full expression it was created in. Yours ends at the semicolon.
这是在 12.2/3:
This is in 12.2/3:
临时对象被销毁,作为评估(词汇上)包含它们创建点的完整表达式 (1.9) 的最后一步.
Temporary objects are destroyed as the last step in evaluating the full-expression (1.9) that (lexically) contains the point where they were created.
你的行为是有保证的.
有两个条件,如果满足,将延长临时的生命周期.第一个是当它是对象的初始值设定项时.第二种是当引用绑定到临时对象时.
There are two conditions that, if met, will extend the lifetime of a temporary. The first is when it's an initializer for an object. The second is when a reference binds to a temporary.
这篇关于为什么未命名的 C++ 对象会在作用域块结束之前销毁?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么未命名的 C++ 对象会在作用域块结束之前销毁?
- C++ 协变模板 2021-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 静态初始化顺序失败 2022-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 近似搜索的工作原理 2021-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 从python回调到c++的选项 2022-11-16