What is a dangling reference?(什么是悬空引用?)
问题描述
以下程序给我运行时错误(Segmentation Fault (SIGSEGV)).
Following program give me runtime error(Segmentation Fault (SIGSEGV)).
#include <iostream>
using namespace std;
int& bar()
{
int n = 10;
return n;
}
int main() {
int& i = bar();
cout<<i<<endl;
return 0;
}
我的老师告诉我这是一个未定义的行为,因为悬空引用.他说得对吗?如果是,那么如何避免它?
My teacher told me it is a undefined behavior because dangling reference. Is he right? If yes then how to avoid it?
推荐答案
是的,这确实是一个未定义的行为,因为您正在返回对自动变量的引用,该变量将在执行 bar()
时被销毁完成
Yes it is indeed an undefined behavior because you are returning a reference to automatic variable which will be destroyed when execution of bar()
completes
你可以通过写来避免它:
You can avoid it by writing:
#include <iostream>
using namespace std;
int& bar()
{
static int n = 10;
return n;
}
int main() {
int& i = bar();
cout<<i<<endl;
return 0;
}
在这种情况下,静态变量 n
在 bar()
执行完成时不会被销毁,它会在您的程序终止时被销毁.
In this case static variable n
will not be destroyed when execution of bar()
completes, it will be destroyed when your program terminates.
这篇关于什么是悬空引用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:什么是悬空引用?


- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 近似搜索的工作原理 2021-01-01
- C++ 协变模板 2021-01-01
- 从python回调到c++的选项 2022-11-16
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- STL 中有 dereference_iterator 吗? 2022-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 静态初始化顺序失败 2022-01-01