问题描述
以下程序给我运行时错误(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.
这篇关于什么是悬空引用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)