Skip to content

Commit b9dcabf

Browse files
authored
Add video links to lvalues and rvalue, and move semantics
1 parent 20a5168 commit b9dcabf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

C++/03 C++ - Object-Oriented Syntax.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -709,6 +709,10 @@ C++ provides 6 special functions that are called default operations that deal wi
709709
| Move assignment | `operator=(X&&)` |
710710
| Destructor | `~X()` |
711711
712+
Why are these important? See the following videos (Thanks to The Cherno!):
713+
- [lvalues and rvalues](https://www.youtube.com/watch?v=fbYknr-HPYE)
714+
- [Move semantics](https://www.youtube.com/watch?v=ehMg6zvXuMY)
715+
712716
You can explicitly define them, delete them, or lean on the compiler's default.
713717
714718
```c++

0 commit comments

Comments
 (0)