在C语言中,变量和函数的特征是通过存储类来描述的,例如变量或函数的可见性和作用域。
C语言中有四种类型的存储类:自动变量、外部变量、静态变量和寄存器变量。
Auto 存储类别是所有局部变量的默认存储类别。它是在调用函数时创建的。当函数执行完成时,变量会自动销毁。
它们也称为局部变量,因为它们是函数的局部变量。默认情况下,编译器会为它们分配垃圾值。
范围 - 自动变量是功能块的局部变量。
默认value - 垃圾值是默认的初始化值。
Lifetime - auto 变量的生命周期受定义它的块的限制。
这是一个 C 语言中 auto 变量的示例,现场演示
#include <stdio.h> int main() { auto int a = 28; int b = 8; printf("The value of auto variable : %d</p><p>", a); printf("The sun of auto variable & integer variable : %d", (a+b)); return 0; }
The value of auto variable : 28 The sun of auto variable & integer variable : 36
外部变量也称为全局变量。这些变量是在函数外部定义的。这些变量在整个函数执行过程中全局可用。全局变量的值可以通过函数修改。
范围 - 它们不受任何函数的约束。它们在程序中无处不在,即全局。
默认值 - 全局变量的默认初始化值为零。
生命周期 - > 直到程序执行结束。
这里是 C 语言中 extern 变量的示例,
现场演示
#include <stdio.h> extern int x = 32; int b = 8; int main() { auto int a = 28; extern int b; printf("The value of auto variable : %d</p><p>", a); printf("The value of extern variables x and b : %d,%d</p><p>",x,b); x = 15; printf("The value of modified extern variable x : %d</p><p>",x); return 0; }
The value of auto variable : 28 The value of extern variables x and b : 32,8 The value of modified extern variable x : 15
静态变量仅初始化一次。编译器保留该变量直到程序结束。静态变量可以在函数内部或外部定义。
范围 - 它们是块的本地变量。
默认值 - > 默认初始化值为零。
生命周期 - 直到程序执行结束。
这里是 C 语言静态变量的示例,
现场演示
#include <stdio.h> int main() { auto int a = -28; static int b = 8; printf("The value of auto variable : %d</p><p>", a); printf("The value of static variable b : %d</p><p>",b); if(a!=0) printf("The sum of static variable and auto variable : %d</p><p>",(b+a)); return 0; }
The value of auto variable : -28 The value of static variable b : 8 The sum of static variable and auto variable : -20
寄存器变量告诉编译器将变量存储在CPU寄存器中,而不是内存中。经常使用的变量被保留在寄存器中,它们具有更快的可访问性。我们永远无法获取这些变量的地址。
作用域 - 它们局限于函数内部。
默认值 - 默认初始化值是垃圾值。
生命周期 - 在定义它的代码块执行结束之前。
这里是C语言中寄存器变量的一个示例:
在线演示
#include <stdio.h> int main() { register char x = 'S'; register int a = 10; auto int b = 8; printf("The value of register variable b : %c</p><p>",x); printf("The sum of auto and register variable : %d",(a+b)); return 0; }
The value of register variable b : S The sum of auto and register variable : 18
以上是C中的存储类的详细内容。更多信息请关注PHP中文网其他相关文章!