本文介绍了什么是悬空参考?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
以下程序给我运行时错误(分段错误(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
您可以通过以下方式避免使用它: / p>
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()执行完成时,$ c>不会被销毁,程序终止时,它会被销毁。
In this case static variable n
will not be destroyed when execution of bar()
completes, it will be destroyed when your program terminates.
这篇关于什么是悬空参考?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!