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.
这篇关于什么是悬空引用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:什么是悬空引用?


基础教程推荐
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 常量变量在标题中不起作用 2021-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 这个宏可以转换成函数吗? 2022-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01