The New C++ (11-…)
- Introduction
- Delegating Constructor
- Strongly Typed
enum
- New OO Features:
= delete
, = default
, override
, final
- Attributes
- Brace Initialization (Uniform Initialization)
- Local Variables In Control Flow Statements
- Duck Typing (Err,
auto
) Without A Duck
- Tuple Unpacking (Err, Structured Binding)
- Range Based
for
Loops
- Miscellaneous
- Lambda
const
, constexpr
, constinit
, consteval
std::bind
, std::function
- Smart Pointers (
std::unique_ptr
, std::shared_ptr
)
- Move Semantics, Rvalue References
- Perfect Forwarding
- Multithreading, C++ Memory Model
- std::any, std::variant, std::optional
std::chrono
std::filesystem
- The Spaceship Operator
<=>
(And Comparison In General)
- Concepts
- Ranges
- Coroutines
- Modules
- Drafts
- Exercises