c语言存储类_C编程语言的存储类

c语言存储类

A variable's storage class tells us the following,

变量的存储类告诉我们以下内容:

  1. Where the variables would be stored?

    变量将存储在哪里?

  2. What will be the initial of the variable, if the initial value is not specifically assigned? (i.e. the default initial value).

    如果未特别指定初始值,则变量的初始值是什么? (即默认初始值)。

  3. What is the scope of the variables, i.e. in which part of the program of the functions the value of the variable would be available?

    变量的范围是什么,即变量的值在函数程序的哪个部分可用?

  4. What is the life of the variable, i.e. how long the variable exists?

    变量的寿命是多少,即变量存在多长时间?

C中的存储类类型 (Types of storage classes in C)

There are four classes in C programming language,

C编程语言共有四类,

  1. Automatic storage classes

    自动存储类

  2. Register storage classes

    注册存储类别

  3. Static storage classes

    静态存储类

  4. External storage classes

    外部存储类别

1)自动存储类 (1) Automatic storage classes)

The keyword auto is used to declare variable of automatic storage class. (keyword auto is optional).

关键字auto用于声明自动存储类的变量。 (关键字auto是可选的)。

Syntax

句法

    auto int a;
int a;

StorageMemory
Default initial valueUnpredictable value
ScopeLocal to the block in which the variable is defined.
LifeControl remains within the block in which the variable is defined.
存储 记忆
默认初始值 不可预测的价值
范围 局部于定义变量的块。
生活 控制保留在定义变量的块内。

Example: To display the default values

示例:显示默认值

#include <stdio.h>
int main ()
{
auto int i,j;
printf("\n%d %d",i,j);
return 0;
}

NOTE: In the output two garbage values will be displayed as automatic variable by default store garbage values.

注意:在输出中,默认情况下,存储垃圾值将显示两个垃圾值作为自动变量。

2)注册存储类 (2) Register storage classes)

The keyword register is used to declare a variable of the register storage class.

关键字register用于声明寄存器存储类的变量。

Syntax

句法

 register int a;
Storage CPU Register
Default initial valueGarbage value
Scope Local to the block in which the variable is defined.
LifeControl remains within the block in which the variable is defined.
存储 CPU寄存器
默认初始值 垃圾价值
范围 局部于定义变量的块。
生活 控制保留在定义变量的块内。

Example:

例:

#include <stdio.h>
int main()
{
register int i;
for(i=1;i<=100;i++);
printf("%d",i);
return 0;
}

Output

输出量

    101

NOTE: A variable stored in CPU register can always be accessed faster than the one which is stored in memory.

注意:存储在CPU寄存器中的变量始终可以比存储在存储器中的变量更快地访问。

We cannot use register storage class for all types of variables.

我们不能将寄存器存储类用于所有类型的变量。

Example: register double a; ,register float c; etc.

示例:注册double a; ,注册float c; 等等

3)静态存储类 (3) Static storage classes)

The keyword static is used to declare variables of static storage class.

关键字static用于声明静态存储类的变量。

Syntax

句法

 static int i;
Storage Memory
Default initial value0
Scope Local to the block in which the variable is defined.
LifeValue of the variable remains b/w different function calls.
存储 记忆
默认初始值 0
范围 局部于定义变量的块。
生活 变量的值仍然是黑白不同的函数调用。

Example:

例:

#include <stdio.h>
void  abc()
{
static int a=10;
printf("%d\n",a);
a=a+10;
}
int main()
{
abc();
abc();
abc();
}

Output

输出量

    10
20
30

NOTE: We should avoid using static variables unless we really need them. Because their value are kept in memory when the variables are not active, which means they take up space in memory that could otherwise be used by other variables.

注意:我们应该避免使用静态变量,除非我们确实需要它们。 因为当变量不活动时它们的值会保留在内存中,这意味着它们会占用内存中的空间,否则这些空间可能会被其他变量使用。

4)外部存储类 (4) External storage classes)

The keyword extern is used to declare the variables of external storage class.

关键字extern用于声明外部存储类的变量。

In this the variable declared without keyword but it should be defined above the function(outside).

在这种情况下,声明为不带关键字的变量,但应在函数(外部)上方定义。

Syntax

句法

 extern int i;
Storage Memory
Default initial value0
Scope Global
LifeAs long as the program execution does not come to an end.
存储 记忆
默认初始值 0
范围 全球
生活 只要程序执行没有结束。

Example:

例:

#include <stdio.h>
/*Global variable*/
int a=10;   
void abc()
{
printf("%d\n",a);
a=a+10;
}
int main()
{
a=a+5;
printf("%d\n",a);
a=a+20;
abc();
printf("%d\n",a);
abc();
a=a+20;
abc();
printf("%d\n",a);
return 0;
}

Output

输出量

    15
35
45
45
75
85

NOTE: Mostly in many cases preference is given to a local variable.

注意:通常在许多情况下,优先级是局部变量。

翻译自: https://www.includehelp.com/c/storage-classes.aspx

c语言存储类

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/540811.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

jsonp请求html页面,JavaScript中的JSON和JSONP

简单地使用json并不能支持跨域资源请求&#xff0c;为了解决这个问题&#xff0c;需要采用jsonp数据交互协议。众所周知&#xff0c;js文件的调用不受跨域与否的限制&#xff0c;因此如果想通过纯web端跨域访问数据&#xff0c;只能在远程服务器上设法将json数据封装进js格式的…

2017软件工程实践

课程信息 软件工程实践 参考教材 《构建之法》 作者&#xff1a;邹欣&#xff0c; 编辑&#xff1a;周筠 他山之石 北京航空航天大学 罗杰&#xff0c; 刘乾 东北师范大学 杨贵福 北京电子科技学院 娄嘉鹏 教师&#xff1a;汪璟玢 助教&#xff1a;卞…

suse leap_Ruby程序检查leap年

suse leapProblem statement: Given a year, we have to check whether it is a Leap year or not using Ruby program. 问题陈述 &#xff1a;给定年份&#xff0c;我们必须使用Ruby程序检查是否为Le年。 Methods used: 使用的方法&#xff1a; gets(): This method is a pu…

html导航栏点击不能跳转,无法单击导航栏中的链接CSS HTML

不确定是否允许您链接您的网站&#xff0c;但是如果允许。 因此&#xff0c;我可以将所有链接悬停在导航栏中&#xff0c;但我无法点击它们&#xff0c;并且S的图片是可移动的&#xff0c;但无法点击&#xff0c;我做错了什么&#xff1f;无法单击导航栏中的链接CSS HTMLNickeb…

JAVA 取得当前目录的路径/Servlet/class/文件路径/web路径/url地址

2019独角兽企业重金招聘Python工程师标准>>> 在写Java程序时不可避免要获取文件的路径...总结一下,遗漏的随时补上 1.可以在servlet的init方法里 String path getServletContext().getRealPath("/"); 这将获取web项目的全路径 例如 :E:\eclipseM9\worksp…

关于细分到字段的权限系统_操作系统中的细分

关于细分到字段的权限系统为什么需要细分&#xff1f; (Why Segmentation is required?) In the Operating System, an important drawback of memory management is the separation of the users view of memory and the actual physical memory. Paging is the scheme which…

计算机科学技术专业解析,专业解读—计算机科学与技术

原标题&#xff1a;专业解读—计算机科学与技术专业培养目标&#xff1a;本专业培养具有良好的科学素养&#xff0c;系统地、较好地掌握计算机科学与技术包括计算机硬件、软件与应用的基本理论、基本知识和基本技能与方法&#xff0c;能在科研部门、教育单位、企业、事业、技术…

阿里云服务器配置开发环境第五章:Centos7.3切换为iptables防火墙

centos7.3默认使用的防火墙应该是firewall&#xff0c;而不是iptables。而我们xxmj服务器使用的是iptables防火墙。所以&#xff0c;在配置防火墙之前&#xff0c;我们需要先关闭firewall&#xff0c;安装iptables。 1.关闭firewall service firewalld stop systemctl disable …

mba学什么书_MBA的完整形式是什么?

mba学什么书MBA&#xff1a;工商管理硕士 (MBA: Master of Business Administration) MBA is an abbreviation of a Master of Business Administration. It is a masters degree for post-graduation in business administration. This business masters degree program is a …

Qt for Android 开发大坑

Qt for Android 开发大坑 作者: qyvlik Qt 5.5.1 这里说一说比較常见的 Qt 开发安卓的大坑。希望同学们不要做无谓的挣扎&#xff0c;跳过这些坑。输入框 首当其冲的是输入框&#xff0c;Qt 的输入在安卓上表现不佳. 无法支持安卓原生的输入法訪问 Qt 的输入框。就是安卓输入法…

bca ac如何联合索引_BCA的完整形式是什么?

bca ac如何联合索引BCA&#xff1a;计算机应用学士学位 (BCA: Bachelor of Computer Applications) BCA is an abbreviation of Bachelor of Computer Applications. It is a three-year undergraduate program in Computer applications. It is considered equivalent to B.Te…

path r'c test.html',robot framework - robot命令参数解析

robot 命令参数解析version > 3.0.1原文档查看命令:robot --helprobot -h-F --extension value通过文件扩展名控制需要执行的用例。如果只执行一个文件&#xff0c;这个参数无效。需要执行多个扩展名时&#xff0c;用“:”分隔开。Examples:--extension robot-F robot:txt-N…

嘿,程序员,你该学点经济学了!

前言&#xff1a; 笔者一直认为&#xff0c;一个好的程序员&#xff0c;不仅仅是代码敲得好&#xff0c;其它方面的知识和能力相同非常重要。特别是随着年龄的增长。非常多人也慢慢的往管理层发展。这个时候沟通与协调能力变得更加重要&#xff0c;而一些策划&#xff0c;推广方…

linux硬件配置_Linux硬件配置

linux硬件配置What sort of hardware configuration is expected to run Linux? This is a decent question; the real hardware configuration for the OS changes intermittently. The Linux Hardware−HOWTO gives a (pretty much) complete posting of hardware supported…

重邮2019计算机考研复试名单,重庆邮电大学2019年硕士研究生招生复试通知

当前2019年考研分数线已经公布&#xff0c;稳稳过线的同学即可全心准备复试了&#xff0c;中公考研小编整理了“重庆邮电大学2019年硕士研究生招生复试通知”文章&#xff0c;希望对大家有所帮助!各复试考生&#xff1a;根据《2019年重庆邮电大学硕士研究生复试工作方案》&…

Linux相关图解随记

01.dns解析过程02.用户访问网站流程03.局域网电脑上网流程04.网站架构图解转载于:https://blog.51cto.com/qinbin/1954149

数据库范式5nf_第五范式(5NF)| 数据库管理系统

数据库范式5nfFifth normal form (5NF) is also known as project-join normal form (PJ/NF). It is designed to minimize redundancy in relational databases by separating semantically connected relationships in multiple formats to store multi-valued facts. 第五范…

量子物理 詹班 计算机,(电气系计算机系詹班)量子物理作业答案

西南交大峨眉校区大学物理西南交大峨眉校区《大学物理》(量子物理基础)作业6(电气、计算机、詹班)一 选择题1. 以一定频率的单色光照射在某种金属上&#xff0c;测出其光电流曲线在图中用实线表示&#xff0c;然后保持光的频率不变&#xff0c;增大照射光的强度&#xff0c;测出…

MySQL5.6 新特性之GTID【转】

转自 MySQL5.6 新特性之GTID - jyzhou - 博客园http://www.cnblogs.com/zhoujinyi/p/4717951.html 背景&#xff1a; MySQL5.6在5.5的基础上增加了一些改进&#xff0c;本文章先对其中一个一个比较大的改进"GTID"进行说明。 概念&#xff1a; GTID即全局事务ID&#…

python判断素数程序_Python程序检查素数

python判断素数程序什么是质数&#xff1f; (What is a prime number?) A prime number is a natural number that is greater than 1 and cannot be formed by multiplying two smaller natural numbers. 质数是大于1的自然数&#xff0c;不能通过将两个较小的自然数相乘而形…