Completed
Non-Cannonical Operators
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
C++ Code Smells
Automatically move to the next video in the Classroom when playback concludes
- 1 Jason Turner
- 2 C++ Best Practices
- 3 Construction Separate From Assignment - Ben Deane
- 4 Raw Loops
- 5 Multi-Step Functions Multi-step functions are hard to reason about, debug, and maintain
- 6 Non-Cannonical Operators
- 7 Code With Conversions
- 8 Casting Away const
- 9 static const
- 10 extern const
- 11 Raw new and delete
- 12 Code Smells
- 13 Let's Update This Code Sample #2
- 14 Do You const Value Parameters?
- 15 Do you const Temporary Values?
- 16 Do You const Value Return Types?
- 17 Missing and Ignored Compiler Warnings Special checks for many of these things
- 18 Missing const and constexpr, Misplaced const . Why isn't that value or member function
- 19 Weak Types And Casts Unfortunately the C++ standard Ubrary does not help us here
- 20 Bonus Code Review