Chapter I. Overview
is C + + really difficult to learn? There's nothing you can't learn.
1.1 Programming languages
Language
Programming language human and computer communication tools, group expansion, communication between people process description and information expression tools
Machine language, assembly language, advanced languages
1.2 A brief History of C + +
1.3 C + +
- The expansion of computer application scope and expansion of programming scale, maintainability, expansibility, security requirements. It is suggested that the programming language should have the ability of data type expansion, and the programming language based on data type and data type is constantly appearing. In the way the programmer defines or designs the data type, the data of the complex structure is organized, unified management, so that the program organization is reasonable and the algorithm design is simple and understandable.
- C C + + can not only process programming, but also the abstract data type of the characteristics of object-based programming, can be inherited and polymorphic as the characteristics of the object-oriented programming, and is improving the template-characterized generic programming. C + + is a hybrid programming language, which can be programmed by program design method for various purposes. It does not abandon the practical characteristics of efficient operation, but also strives to improve the programming quality of large-scale programs and improve the problem-description ability of programming language.
- The standard C + + standard C + + programmer is more closely related to the portability of the system, using standard C + + programming can be on different standard C + + compilers to run the same results in different computer systems of the machine program. The programmer can take advantage of the standard library. Standard C + + tools: windows:c++ Bulider6.0 above, visualc++. NET above, linux:g++3.0, Borland C + + Kylix3.0 and above
1.4 C + + programming process
- Programming language is divided into explanatory type and compiled type, the explanatory type is not compiled and connected intermediate links, easy to execute but unable to leave the interpreter field, need constant interaction so low performance. C + + programming process, editing, compiling, linking, debugging
- Minimum sample program
- Programming style
1.5 Programs and Algorithms
C + + Programming Tutorial Learning (1)-Part I programming basics