Difference between revisions of "Intermediate C++ Game Programming Tutorial 22"

From Chilipedia
Jump to: navigation, search
(Video Timestamp Index)
Line 15: Line 15:
 
* [https://youtu.be/DMdyz0lrFBI Tutorial 22 Part 1]
 
* [https://youtu.be/DMdyz0lrFBI Tutorial 22 Part 1]
 
* Tutorial 22 Part 2 COMING SOON!
 
* Tutorial 22 Part 2 COMING SOON!
 +
 +
== Extra Discussion ==
 +
I had an interesting exchange with a viewer, and made a bit of a writeup here: http://forum.planetchili.net/viewtopic.php?f=3&t=4305
  
 
== Source Code ==
 
== Source Code ==

Revision as of 10:53, 30 January 2018

In this video we learn how to use C++ exceptions to take our error handling to the next level. There is a lot of fear and ignorance surrounding exceptions among "C++ Programmers", and Chili's goal here is to elevate you guys above the shit-tier level to coders who can actually use this feature to its full extent. The second part of this tutorial will give concrete, practical examples of using exceptions in an actual game scenario.

Topics Covered

  • Basic exception trying throwing and catching
  • Exceptions 'bubbling up'
  • Rethrowing with throw
  • std::exception and its derivatives
  • Polymorphism in exception handling
  • catch(...)
  • Throw by value, catch by const reference
  • Exceptions and destructors
  • noexcept and move constuctors vs. standard containers

Video Timestamp Index

Extra Discussion

I had an interesting exchange with a viewer, and made a bit of a writeup here: http://forum.planetchili.net/viewtopic.php?f=3&t=4305

Source Code

See also