
C++ Training
C++ is a statically-typed, free-form, (usually) compiled, multi-paradigm, intermediate-level general-purpose middle-level programming language.In simple terms, C++ is a sophisticated, efficient and a general-purpose programming language based on C. It was developed by Bjarne Stroustrup in 1979.Object oriented programming helps you solve a complex problem intuitively.With its use in C++, you are able to divide these complex problems into smaller sets by creating objects.
-
- C++ Characteristics
- Object-Oriented Terminology
- Polymorphism
- Object-Oriented Paradigm
- Abstract Data Types
- I/O Services
- Standard Template Library
- Standards Compliance
- Summary
C++ Overview
-
Functions and Variables
- If
- Functions:Declaration and Definition
- Variables:Definition,Declaration,and Scope
- Variables:Dynamic Creation and Derived Data
- Arrays and Strings in C++
- Qualifiers
- Summary
-
Classes in C++
- Defining Classes in C++
- Classes and Encapsulation
- Member Functions
- Instantiating and Using Classes
- Using Constructors
- Multiple Constructors and Initialization Lists
- Using Destructors to Destroy Instances
- Friendship
- Summary
-
Operator Overloading
- Operator Overloading
- Working with Overloaded Operator Methods
- Summary
-
Initialization and Assignment
- Initialization vs.Assignment
- The Copy Constructor
- Assigning Values
- Specialized Constructors and Methods
- Constant and Static Class Members
- Summary
-
Storage Management
- Memory Allocation
- Dynamic Allocation:new and delete
-
Inheritance
- Overview of Inheritance
- Defining Base and Derived Classes
- Constructor and Destructor Calls
-
Input and Output in C++ Programs
- Standard Streams
- Manipulators
- Unformatted Input and Output
- File Input and Output
-
Exceptions
- Exceptions
- Inheritance and Exceptions
- Exception Hierarchies
- Inside an Exception Handler
-
Templates
- Template Overview
- Customizing a Templated Method
- Standard Template Library Containers
- Inside an Exception Handler