const 常量(const 常量).doc

  1. 1、本文档共20页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
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

文档评论(0)

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

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

版权声明书
用户编号:8000054077000003

1亿VIP精品文档

相关文档