// 数据
// 储存方式
void fun(int a)
{
static int c = a;
//静态储存变量 分配一次内存 栈上分配内存
int b = a;
//动态储存变量 重新分配内存 堆上分配内存
}
// 使用方式
//引用
int a = 10;
int &b = a;