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

From Chilipedia
Jump to: navigation, search
(Video Timestamp Index)
(Video Timestamp Index)
Line 16: Line 16:
 
* What is an rvalue (simple definition) [https://youtu.be/93mlQnWbyuk?t=2m48s 2:48]?
 
* What is an rvalue (simple definition) [https://youtu.be/93mlQnWbyuk?t=2m48s 2:48]?
 
** rvalues are values that can only appear on the right hand side of an assignment operation (=), such as:
 
** rvalues are values that can only appear on the right hand side of an assignment operation (=), such as:
** literals are rvalues, they can't appear on the left hand side: <code>69 = 420;</code> doesn't make sense
+
::- <u>literals</u> are rvalues, they can't appear on the left hand side: <code>69 = 420;</code> doesn't make sense
** temporary return values of functions are rvalues, you can't assign to it: <code>f() = 420;</code>, where the signature of <code>f</code> is <code>int f();</code> doesn't make sense
+
** <u>temporary return values of functions</u> are rvalues, you can't assign to it: <code>f() = 420;</code>, where the signature of <code>f</code> is <code>int f();</code> doesn't make sense
 
** lvalues are values that can appear on the left hand side of assignments; they can be assigned to:  
 
** lvalues are values that can appear on the left hand side of assignments; they can be assigned to:  
 
* WORK-IN-PROGRESS
 
* WORK-IN-PROGRESS

Revision as of 05:07, 19 October 2019

In this video we learn about r-value reference and move semantics, which is perhaps the most important feature that was added in the C++11 update. This is going to allow us to manage and transfer our resources in a precise and efficient manner. It is sexy as fuck and I love it.

Topics Covered

  • r-values and l-values
  • r-value reference function overloading
  • Move constructor and move assigment
  • Rule of 5
  • std::move
  • std::make_move_iterator

Video Timestamp Index

Tutorial 20

  • Why are move semantics relevant and important? 0:30
    • Example use case: adding objects to a container using emplace_back
    • Instead of deep copying every element of the container when expanding the container capacity, move semantics allow you to direct pointers in the new container to existing blocks of memory
  • What is an rvalue (simple definition) 2:48?
    • rvalues are values that can only appear on the right hand side of an assignment operation (=), such as:
- literals are rvalues, they can't appear on the left hand side: 69 = 420; doesn't make sense
    • temporary return values of functions are rvalues, you can't assign to it: f() = 420;, where the signature of f is int f(); doesn't make sense
    • lvalues are values that can appear on the left hand side of assignments; they can be assigned to:
  • WORK-IN-PROGRESS

Note

If you are using Visual Studio 2017, you might notice that our move members are not being used during std::vector growth even after we have 'properly' implemented them. This is expected, so don't pay it much mind at the moment.

The reason for this is that std::vector will only use the move members if they are guaranteed not to throw any exceptions (as per the standard). This issue will be dealt with in Intermediate 22 (tutorial on exceptions). For your interest, you can enable the move optimization by declaring your move ctor as Surface( Surface&& ) noexcept. The same should be done for the move assignment and the destructor.

You might wonder why Chili had no problems in the video. In the video, Chili was using Visual Studio 2015, which does not conform to the standard in this point, so it uses the move members regardless of whether or not they are marked noexcept.

Source Code

See also