- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
变量的存储类型(Storage type for variables)
变量的存储类型(Storage type for variables)
Storage type for variables
In the C++ language, variables usually have 4 storage types, namely, extern, static, register, and auto. Heres one by one.
Extern storage type
Before you introduce the extern storage type, first clarify a concept -- declarations and definitions of variables. A declaration of a variable tells the compiler the name and data type of the variable. The definition of the variable allocates the storage area for the variable. Typically, variable declarations are also considered variable definitions. However, you can use the extern keyword to declare only variables without defining them. Such as:
Extern int var;
What are the advantages of declaring only without defining variables? In general, an application may contain many files, and if you define a global variable in a file, you may need to access it in other files. Then, in other files, you can use the extern keyword to declare only the global variables without defining them, and the extern keyword tells the compiler the name and type of the variable, and the definition of the variable is derived from the previous file. This allows you to share global variables in other files. For example, define a shaping global variable VaR in a file.
Int var = 0;
In another file, you can access the global variable VaR in the file by declaring the global variable var using the extern keyword.
Extern int var;
Static storage type
Before introducing the static storage type, first introduce the local variables and global variables. Variables can be divided into local variables and global variables depending on their scope of action. A local variable is a variable defined within a function, and the local variable will disappear after the function call ends. A global variable is a variable defined outside a function whose lifetime ends with the end of the program.
Static storage type is mainly for local variables, if you define a static local variable, its lifetime will remain at
您可能关注的文档
- 包青天之七侠五义流程攻略(The Bao five righteous processes Raiders).doc
- 北京人才优势雄厚 打企业培训造世界人才之都尚存差距(Beijing has a strong talent pool, and there is still a gap between enterprises training and creating talents in the world).doc
- 办公室文员职责(Office clerk responsibilities).doc
- 北京到威海自驾游路线(Beijing to Weihai self driving route).doc
- 北京化妆品购物地图-电子地图标注网(Beijing cosmetics shopping map - electronic map tagging network).doc
- 北京值得去的景点一览(A list of scenic spots worth visiting in Beijing).doc
- 北京bgp双线机房(Beijing BGP double track computer room).doc
- 北京医保报销比例以及详细案例(Beijing medical insurance reimbursement ratio and detailed cases).doc
- 北京吃面的世界(Beijing eating noodles world).doc
- 北京周末50事(Beijing weekend 50 thing).doc
- 变量说明(Variable specification).doc
- 变量延迟再解(Variable delay solution).doc
- 哺乳期妈妈感冒的饮食疗法(Diet therapy for mother's cold during lactation).doc
- 哺乳动物名(Mammal name).doc
- 别墅平面的设计手法(Villa design techniques).doc
- 博客思听2005年书摘内容简介(Listen to the introduction in 2005 Digest Si blog content).doc
- 不亦快哉三十三则之金圣叹(No. thirty-three, Jin Shengtan).doc
- 不卖房子卖浪漫(Don't sell a house, sell romance).doc
- 不可不知的因果规律(The law of causation).doc
- 不可思议之国的冒险酒馆菜谱(Adventures of the incredible country pub menu).doc
文档评论(0)