C语言中的存储类型说明符
typedef
extern
static
auto
register
__block说明符类似于static,auto和register说明符,用于说明变量的存储区域。其中auto表示自动变量存储在栈区,static表示作为静态变量存储在静态区。
C语言中的存储类型说明符
typedef
extern
static
auto
register
__block说明符类似于static,auto和register说明符,用于说明变量的存储区域。其中auto表示自动变量存储在栈区,static表示作为静态变量存储在静态区。