Move semantics makes it possible for compilers to replace expensive copying operations with less expensive moves. … C++ and move semanticsRead more
Month: February 2023
C++ and smart pointers – my notes
Some notes, when from my process of learning smart pointers. Quick Reminder about Memory Why do … C++ and smart pointers – my notesRead more
C++ and shallow copy vs. deep copy
In C++, a shallow copy of an object is a copy of the object that shares … C++ and shallow copy vs. deep copyRead more
C++ and containers (STL) – my notes
Most computing involves creating collection of values and then manipulating such collections. So container would be … C++ and containers (STL) – my notesRead more