Completed
Intro
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Error Handling in C++ - As Easy as "Use Exceptions"?
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 Classification of issues
- 3 Examples of errors and exceptional situations
- 4 General approach to handling
- 5 Exception safety
- 6 Add context
- 7 General characteristics
- 8 std::optional - special case
- 9 Naive implementation
- 10 Functional style
- 11 Pattern matching in C++
- 12 Pre-conditions example (non-null pointer)
- 13 Good practices