You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
move semantics
About this tag
This tag covers move semantics in C++, a feature introduced in C++11 that allows efficient transfer of resources from temporary objects. Discussions include its implementation in the Standard Template Library (STL) as part of Visual C++, with insights from Microsoft's STL maintainer Stephan T. Lavavej. Topics range from rvalue references and move constructors to performance benefits in container classes and algorithms. The content is aimed at C++ developers seeking to understand how move semantics optimize memory management and reduce unnecessary copying in modern C++ code.
Welcome to another installment of C9 Lectures covering the powerful general C++ library, STL. Joining us once again is the great Stephan T. Lavavej, Microsoft's keeper of the STL cloth (this means he manages the partnership between the owners of STL (dinkumware) and Microsoft, including, of...