网站大量收购闲置独家精品文档,联系QQ:2885784924

北京大学计算概论课件第十一讲 变量的生存期作用域.ppt

北京大学计算概论课件第十一讲 变量的生存期作用域.ppt

  1. 1、本文档共41页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 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

您可能关注的文档

文档评论(0)

ormition + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档