C++ initially provided object-oriented programming features (see Chapter 13 and Chapter 14) and later added generic programming capabilities. C++ 's close relationship to C allows C++ programs to utilize a large collection of code developed in C.
C++ is widely used in industry for commercial software development. It is an industrial strength programming language used for developing complex systems in business, science, and engineering. Examples of software written in C++ include Microsoft Windows 8, Microsoft Office, macOS, and Adobe Creative Suite.
In order to meet the needs of commercial software development and accomplish all that it does, C++ itself is complex. While experienced programmers can accomplish great things with C++ , beginners sometimes have a difficult time with it. Professional software developers enjoy the flexible design options that C++ permits, but beginners need more structure and fewer options so they can master simpler concepts before moving on to more complex ones.
This book does not attempt to cover all the facets of the C++ programming language. Experienced programmers should look elsewhere for books that cover C++ in much more detail. The focus here is on introducing programming techniques and developing good habits. To that end, our approach avoids some of the more esoteric features of C++ and concentrates on the programming basics that transfer directly to other imperative programming languages such as Java, C#, and Python. We stick with the basics and explore more advanced features of C++ only when necessary to handle the problem at hand.
Table of contents
- The Context of Software Development
- Writing a C++ Program
- Values and Variables
- Expressions and Arithmetic
- Conditional Execution
- Iteration
- Other Conditional and Iterative Statements
- Using Functions
- Writing Functions
- Managing Functions and Data
- Sequences
- Sorting and Searching
- Standard C++ Classes
- Custom Objects
- Fine Tuning Objects
- Building some Useful Classes
- Inheritance and Polymorphism
- Memory Management
- Generic Programming
- The Standard Template Library
- Associative Containers
- Handling Exceptions
- Command Line Development
Pages : | 766 |
Size : | 12.8 MB |
Downloads: | 144 |
Created: | 2022-02-02 |
License: | CC BY |
Author(s): | Richard L. Halterman |
Warning: Trying to access array offset on false in /home/tutovnfz/public_html/amp/article-amp.php on line 263
Others related eBooks about Fundamentals of C++ Programming
Download free course Introduction to Programming with Fortran, pdf file on 963 pages by Ian Chivers, Jane Sleightholme.
Download free course Java 3D Programming, pdf file on 352 pages by Daniel Selman.
Physical computing allows us to build interactive physical systems by using software &..., download free C Programming tutorial in PDF (512 pages) created by Julien Bayle .
Download free course C Programming Notes for Professionals, pdf file on 341 pages by Stack Overflow Community.
Programming from the Ground Up uses Linux assembly language to teach new programmers the most important concepts in programming. It takes you a step at a time through these concepts: * How the processor views memory * How the processor operates * How programs interact with the operating system * H