标签: c++ recursion static-variables
第一次返回执行后,是否会销毁在递归函数中声明的静态变量? 例如:
int func(int x) { static int n; // recursive call }