返回 ref 时是否为未定义的行为?到局部变量?
int & func(){
int x = 10;
return x;
}
int main() {
int &y = func();
cout << y << endl;
}
返回 ref 时是否为未定义的行为?到局部变量?
int & func(){
int x = 10;
return x;
}
int main() {
int &y = func();
cout << y << endl;
}