制作于2018.4.2
静态局部变量
每次调用都不会初始化,只到程序结束,但是只是局部变量,外部不能用
int min(){
static int a = 1;
a += 1;
}
静态变量-只初始化一次
static int 直到程序终止才结束