gpt4 book ai didi

c++ - 对临时的常量引用

转载 作者:可可西里 更新时间:2023-11-01 16:27:01 26 4
gpt4 key购买 nike

看完this article在 Herb Sutter 的博客上,我做了一些实验,遇到了一些让我困惑的事情。我使用的是 Visual C++ 2005,但如果它依赖于实现,我会感到惊讶。

这是我的代码:

#include <iostream>

using namespace std;

struct Base {
//Base() {}
~Base() { cout << "~Base()" << endl; }
};

int main()
{
const Base & f = Base();
}

运行时,它会显示“~Base()两次...但是如果我取消注释构造函数,它只会显示一次!

有人对此有解释吗?

最佳答案

这取决于实现。

该标准允许在将临时对象绑定(bind)到 const 引用时进行复制。在您的情况下,VC++ 仅在隐式定义构造函数时才执行复制。这是意料之外的,但却是允许的。

C++1x will fix this .

关于c++ - 对临时的常量引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/760578/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com