- 1、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
const 常量(const 常量)
const 常量(const 常量) 1) you can define const constants (2) const can modify the parameters of a function and return values Detailed content: 1, what is const? A constant type is a type that is specified by the type modifier const, and a constant type variable or object value is not updated. (of course, we can update: substitution) 2. Why introduce const? The initial purpose of const is to replace the precompiled instructions, eliminate its shortcomings, and inherit its advantages. 3, what are the main functions of cons? (1) you can define const constants that are immutable. Such as: Const int Max=100; int Array[Max]; (2) easy to type checking, so that the compiler has more understanding of the content and eliminates some pitfalls. For example: void f (const int i) {...}...... the compiler will know that I is a constant, not allowed to modify; (3) to avoid ambiguous figures, also can adjust and modify the parameters conveniently. As with macro definitions, you can do it without changing it! If (1), if you want to modify the contents of Max, only need: const, int, Max=you, want; you can! (4) you can protect what is modified, prevent accidental changes, and enhance the robustness of your program. For example, if the I is modified in the body of the function, the compiler will make a mistake; for example: Void, f (const, int, I) {i=10, //error} (5) provides a reference for function overloading. Class A {...... Void f (int i) {...} / / a function... Void f (int i const) {...} / /... A function overloading...... }; (6) saving space and avoiding unnecessary memory allocation. Such as: #define PI / / 3.14159 macro constant Const doulbe Pi=3.14159; / / at this time did not put Pi in the ROM...... Double i=Pi; / / Pi at this time for the allocation of memory, no longer assigned! Double I=PI; / / compile time performs macro substitution, memory allocation Double j=Pi; / / no memory allocation Double J=PI; / / then macro substitution again allocate memory! Const defines a constan
您可能关注的文档
- 6条定律让你变得富有(The 6 law makes you rich).doc
- 6检讨书(6 book review).doc
- 6消化与吸收生理(6 digestion and absorption physiology).doc
- 7 supporting science(7支持科学).doc
- 7 冠词(7 article).doc
- 6种方式有哪些信誉好的足球投注网站引擎营销期间可以利用假期和季节性(In the 6 way, you can use vacations and seasonality during the search engine marketing).doc
- 7-11便利店(7-11 convenience stores).doc
- 7360语音命令(7360 voice command).doc
- 73-丽水高三数学(73- Lishui senior high school mathematics).doc
- 75-第十二章 单元测试题(75- twelfth chapter unit test questions).doc
- const与指针(const与指针).doc
- const修饰指针和引用释疑(The modification of const pointers and references on).doc
- const用法(Const usage).doc
- cookie用法整理(Cookie usage arrangement).doc
- cool edit 使用指南(Cool Edit使用指南).doc
- copy of gsm系统消息的介绍 x(Copy of GSM system message introduction x).doc
- cool 英语(酷英语).doc
- copy详细用法大全(Copy detailed usage Daquan).doc
- could you please clean your room 说课稿(请你打扫你的房间说课稿).doc
- co(有限公司).doc
文档评论(0)