- 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
- 北交所消费服务产业跟踪第十九期:下游日化行业发展促进香精香料行业稳步增长,关注北交所相关标的-250623-华源证券-18页.pdf
- 北交所策略专题报告:北证国光,掘金北证国企改革,国企改革红利下的低估值机遇-250622-开源证券-17页.pdf
- 2025人工智能行业中期投资策略报-中信建投.pdf
- 2025年GenAI硬件北美影响力报告.pdf
- Morgan Stanley-中国的新兴前沿 从轮式到步式——汽车如何跨足人形机器人-116052139.pdf
- 并购重组跟踪(二十五)-250623-东吴证券-13页.pdf
- 冲击的“脉络“系列之二:封锁“霍尔木兹”,不可信的承诺?-250625-申万宏源-15页.pdf
- 2025中国绿氢产业发展蓝皮书.pdf
- 2025河南上市公司白皮书-曈.pdf
- 策略点评报告:并购重组跟踪半月报-250626-中银证券-10页.pdf
文档评论(0)