Skip to content

Latest commit

 

History

History

core-cpp-2019-understanding-lvalues-and-rvalues

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Understanding Lvalues and Rvalues

This is my learning notes of Core C++ 2019 :: Dan Saks :: Understanding Lvalues and Rvalues.
This is an excellent guide to help us understanding more details of Lvalues and Rvalues.

Notes

I'd like to summary the most important stuff for me here. Any other details can be deep dive into the video/slides.

Recap for Lvalues and Rvalues

This is a perfect summary of Lvalue and Rvalue behaviors. Refer to understanding-cpp11/rvalue_reference also.

Reference Types

A reference is essentially a pointer(acts like a const pointer) that's automatically dereferenced each time it's used.
It gives much sense to me for where the reference comes from.

Value Categories

Values categories in modern C++. Refer to understanding-cpp11/rvalue_reference also.

References