最佳答案
如果我在一组新的花括号中创建了一个变量,那么这个变量是从关闭的花括号的堆栈中弹出,还是挂起直到函数结束?例如:
void foo() {
int c[100];
{
int d[200];
}
//code that takes a while
return;
}
d
会在 code that takes a while
部分占用内存吗?