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.
这篇关于什么是悬空引用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:什么是悬空引用?
基础教程推荐
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01