- 1、本文档共41页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Lesson 11 Functions Ⅱ —— Variable Scope, Storage Class and Recursion 2007.10.31 Objectives Variable Scope Variable Storage Class Pass by Reference Pointer Recursion Variable Scope Variable Scope (continue) Scope is the section of the program where the variable is valid or “known” Variables created inside a function are local variables Variables created outside and in front of all the functions are Globe variables Global variables ——sharing data among functions Can be access from all the functions Exist till the end of program running Coding a function prototype as a global makes sense when the function is used by a number of other functions in a source code file Except for symbolic constants and prototypes, global variables should almost never be used Formal parameters: int drawOut (int, int); … trans = drawOut ( i , j ); if (trans = 0) i = trans; else printf(“ Overdraw\n”); … Variable Storage Class In addition to the space dimension represented by its scope, variables also have a time dimension Called the variable’s “lifetime” variable’s life duration is determined by the storage class of the variable auto, static, extern, and register Variable Storage Classes Variable scope: local global Storage class: auto static Automatic storage —— Object created and destroyed within its block Stack: auto vs static Static storage Variables exist for entire program execution static: local variables defined in functions. Keep value after function ends Only known in their own function extern: default for global variables and functions Known in any functions Control scope of a global variables the extern storage class is to extend the scope of a global variable declared in one source code file into another source code file The static global class is used to prevent the extension of a global variable into a second file The “extern” specifier: register: Tries to put variable into high-speed registers Can only be
您可能关注的文档
- 包头师范学院区域分析与规划课件第七章第一节 区域规划的概念及内容.ppt
- 包头师范学院区域分析与规划课件第十章 区域管治.ppt
- 包头师范学院人力资源管理课件第3章 人力资源管理者和人力资源管理部门.ppt
- 包头师范学院数据库原理与应用课件 第五章.ppt
- 包头师范学院数学教学论课件 绪论.ppt
- 包头师范学院数学教学论课件第八章 中学数学教育测量和评价.ppt
- 包头师范学院数学教学论课件第六章 中学数学能力.ppt
- 包头师范学院数学教学论课件第七章 中学数学的教学手段与教学方法.ppt
- 包头师范学院数学教学论课件第三章 中学数学的教学原则.ppt
- 包头师范学院数学教学论课件第五章 中学数学思想.ppt
- 中国国家标准 GB/T 12357.1-2024通信用多模光纤 第1部分:A1类多模光纤特性.pdf
- 中国国家标准 GB/T 18851.2-2024无损检测 渗透检测 第2部分:渗透材料的检验.pdf
- 《GB/T 18851.2-2024无损检测 渗透检测 第2部分:渗透材料的检验》.pdf
- GB/T 18851.2-2024无损检测 渗透检测 第2部分:渗透材料的检验.pdf
- GB/T 44927-2024知识管理体系 要求.pdf
- 中国国家标准 GB/T 44927-2024知识管理体系 要求.pdf
- 《GB/T 44927-2024知识管理体系 要求》.pdf
- GB/T 44937.4-2024集成电路 电磁发射测量 第4部分:传导发射测量1 Ω/150 Ω直接耦合法.pdf
- 《GB/T 44937.4-2024集成电路 电磁发射测量 第4部分:传导发射测量1 Ω/150 Ω直接耦合法》.pdf
- 中国国家标准 GB/T 44937.4-2024集成电路 电磁发射测量 第4部分:传导发射测量1 Ω/150 Ω直接耦合法.pdf
文档评论(0)