c++学习笔记(C++ learning notes).doc

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

c++学习笔记(C++ learning notes) 1. when learning C++, the most important thing is to focus on the concept and not get lost in the technical details of the language. The understanding of programming and design techniques is far more important than understanding the details, and this understanding is simply time and practice. 2. minimize the use of arrays and C style strings. In contrast to the traditional C style, the use of C++ standard libraries, string and vector, often simplifies programming. 3., try to consider the program as a set of interacting concepts represented by classes and objects rather than a bunch of data structures and some functions that move binary bits in the data structure. 4.C++ allows you to put any declarations into namespaces. Five Virtual, void, push (char, c) = 0; Virtual means that it can be redefined in the class derived from this class in the future. The syntax specification for =0 indicates that this function must be defined in certain classes derived from such a class. The 6. template is a compile time mechanism that does not cause any additional runtime overhead. 7. string type provided by standard library: Name.replace (start, end, string2); Name.substr (start, length); (name.c_str); / / C style string value extraction 8. use: CIN str; When a blank character will end an entry, you can read a full line as follows: Getline (CIN, STR); The member function size () of the 9. vector vector gives the number of his elements. VectorEntry book (1000); a vector of //1000 elements VectorEntry book[1000]; an array of //1000 null vectors 10.vector does not check the range: Int i = book[1000].name; / / random value Table 11. List Typedef listEntry:: const_iterator, LI; For (LI, I = book.begin (); I = = book.end (); ++i) {...} Each standard library container provides functions begin () and end (), which are returned to the first element in the container and the iterator over an element at the end, respectively. For a given iterator I, the next next ele

您可能关注的文档

文档评论(0)

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

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

版权声明书
用户编号:8000054077000003

1亿VIP精品文档

相关文档