- 1、本文档共6页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
c中const用法总结(Summaryofconstusageinc)
c++中const用法总结(Summary of const usage in c++)
Summary of const usage in C++
1. const constants, such as const, int, max = 100;
Advantages: const constants have data types, and macro constants have no data type. The compiler can perform a type security check on the former, while the latter only performs character substitution, there is no type of security check, and unexpected errors may occur when the characters are replaced.
2. const modified class data members. Const data members are constants only in the lifetime of an object, and are mutable for the entire class. Because classes can create multiple objects, different objects can have different values for their const data members. Therefore, const data members cannot be initialized in class declarations, because the compiler does not know what the value of the const data member is when the object of the class is not created. Initialization of const data members can only be performed in the initialization table of the class constructor.
3., const modify the pointer, see the next type:
Const, int*, a = [1]
Int, const, *a = [2]
Int*, const, a = [3]
Const, int*, const, a = [4]
Can refer to Effective c++ on Item21, if the const is located on the left side of the asterisk, const is used to modify the pointer variable, i.e. a pointer to const; if the const is located on the right side of the asterisk, const is the pointer itself, the pointer itself is constant. Therefore, [1] and [2] are the same, is a pointer pointing to the contents is a constant change of content is not allowed in this case, if not *a = 3; [3] for the pointer itself is constant, while the pointer is not constant, this case can not change the operation of the pointer. If the a++ is wrong; [4] is the pointer itself and points to the content is constant.
Initialization of 4. const
Take a look at the initialization of the const variable
1) non pointer const constant initialization: A b;
Const, A, a = b;
2) the initialization of the pointer const const
您可能关注的文档
- 2014计算机应用基础_在线作业_b(2014 basic computer application _ online homework _b).doc
- 23《称象》教学设计之四(23 as teaching design four).doc
- 28_小伙伴的教学反思3(Reflections on the teaching of 28_ buddy 3).doc
- 24《东方之珠》(24 the Oriental Pearl ).doc
- 23《美丽的小兴安岭》教学设计之九(23 beautiful little Xingan Ling teaching design nine).doc
- 2d游戏设计浅谈(Discussion on game design 2D).doc
- 2到3岁宝宝语言学习游戏(2 to 3 years old baby language learning games).doc
- 2d网络游戏排行榜排行(2D online game Ranking Ranking).doc
- 2春雨的色彩教学反思(Reflection on the 2 spring color teaching).doc
- 2b论文(2B paper).doc
- c++程序设计论文(C++ programming papers).doc
- c++简单反射代码(C++ simple reflection code).doc
- c++期末复习(程序填空题)1(C++ final review (fill in the blanks) 1).doc
- c++名家对话-008访问限制(C++ masters dialogue -008 access restrictions).doc
- c++编写进程调度模拟程序(Preparation of c++ scheduling process simulation program).doc
- c++编程新手错误分析(C++ programming novice error analysis).doc
- c++记忆(C++ memory).doc
- c0000005-cad错误(C0000005-cad error).doc
- c-38学校教育信息化规划(C-38 school education informatization planning).doc
- c++连接sql(The c++ connection SQL).doc
文档评论(0)