C++ is an object-oriented programming language. Like C, it provides finer control of memory and is closer to hardware than many other languages.
Key concepts
- Data types
- Type cast (
static_cast,reinterpret_cast,const_cast,dynamic_cast) - typedef
- struct (
struct) - Templates and containers
- Type cast (
- Qualifiers
- Object-oriented constructs
- Constructor
- Operator overloading
- Access modifier (
public,private,protected) - Stream
- Exception handling
- Functional constructs
- Memory-accesses
- Pointer
- Reference (
&) - Unique pointer (
unique_ptr) - Shared pointer (
shared_ptr)
- Reference (
- Heap allocation (
new,delete)
- Pointer
Resources
- Problem Solving with C++, by Walter J. Savitch
- The Definitive C++ Book Guide and List on StackOverflow