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

From Chilipedia
Jump to: navigation, search
(Video Timestamp Index)
(Video Timestamp Index)
Line 33: Line 33:
 
</div>
 
</div>
 
* Overview of different types of casts [https://youtu.be/g-NGBFCn3co?t=9m30s 9:30]
 
* Overview of different types of casts [https://youtu.be/g-NGBFCn3co?t=9m30s 9:30]
* <div class="mw-collapsible-content">
+
<div class="mw-collapsible-content">
 
<div class="mw-collapsible mw-collapsed"><br />
 
<div class="mw-collapsible mw-collapsed"><br />
 
** static_cast
 
** static_cast
Line 41: Line 41:
 
</div>
 
</div>
 
** dynamic_cast
 
** dynamic_cast
 +
<div class="mw-collapsible-content">
 
*** casts pointers/references within an inheritance hierarchy (dynamic check!)
 
*** casts pointers/references within an inheritance hierarchy (dynamic check!)
 
*** requires that the type have at least one virtual function
 
*** requires that the type have at least one virtual function
 
***  if check fails, nullptr for ptr* cast, throw exception for ref& cast
 
***  if check fails, nullptr for ptr* cast, throw exception for ref& cast
 +
</div>
 
** reinterpret_cast
 
** reinterpret_cast
 +
<div class="mw-collapsible-content">
 
*** reinterpret pointers/references as pointing to some other type (no check, no limit!) (only really safe for char*)
 
*** reinterpret pointers/references as pointing to some other type (no check, no limit!) (only really safe for char*)
 
*** reinterpret pointer as an integral value
 
*** reinterpret pointer as an integral value
 +
</div>
 
** const_cast
 
** const_cast
 +
<div class="mw-collapsible-content">
 
*** remove constness
 
*** remove constness
 +
</div>
 
** c-style cast (int) etc.
 
** c-style cast (int) etc.
 +
<div class="mw-collapsible-content">
 
*** can do all of the above, even if you don't mean to<br />
 
*** can do all of the above, even if you don't mean to<br />
 
***<code>const Base* pBase = &obj;</code> <br />
 
***<code>const Base* pBase = &obj;</code> <br />
Line 55: Line 62:
 
***<code>Derived* pDerived = (Derived*)pBase;</code>
 
***<code>Derived* pDerived = (Derived*)pBase;</code>
 
*** casted away the constness by accident!
 
*** casted away the constness by accident!
 +
</div>
 
</div>
 
</div>
 
</div>
 
</div>

Revision as of 05:46, 16 October 2019

In this video Chili teaches us how to figure out what our polymorphic pointers are actually pointing to (aka "type discovery"). Just note that although we can do this, it is generally a weaksauce way to go about things. Virtual functions are 1000% more hype than type discovery bullshit. Oh yeah, we also finally see all the C++ style casts united.

Topics Covered

  • dynamic_cast<T*> and dynamic_cast<T&>
  • const_cast
  • Overview of all C++ style casts
  • RTTI with typeid()
  • The type_info class

Video Timestamp Index

Tutorial 19

[Expand]
  • Using dynamic_cast<new-type>(expression) to determine to what derived type a pointer to a polymorphic base type is actually pointing 0:54
  • Using static_cast<>() to convert pointers within an inheritance hierarchy 6:20
  • Using const_cast<>() to remove a const from a reference or pointer (yes, you read that right) 7:27
  • Overview of different types of casts 9:30
  • Using RTTI (Runtime Type Information) 13:01
  • The type_info class 15:05

Source Code

Note that the code for this video is in a different branch called "casting". You will not find it in the master branch.

See also