参见英文答案 >
Can a local variable’s memory be accessed outside its scope?19
一个基本的问题,我不知道答案.跟随功能是否有效?
一个基本的问题,我不知道答案.跟随功能是否有效?
std::vector<int> & test_function() { std::vector<int> x; // do whatever return x; }
解决方法
行为是未定义的.您不应该返回对局部变量的引用.