#ifndef _TEST_H
#define _TEST_H
#include <iostream>
using namespace std;
//注意:函数只是一个代码段,每次调用函数时候其中的普通局部变量都是从栈空间分配的
void func(int a)
{
if(a != 0)
{
a--;
func(a);
cout << a << endl;
cout << &a << endl;
}
else
{
return;
}
return;
}
void main()
{
func(10);
}
#endif //_TEST_H