Scott Meyers is one of the world's foremost authorities on C++. He wrote the best-selling Effective C++ series (Effective C++, More Effective C++, and Effective STL) and recently published training materials on C++0x and on using C++ in embedded syst
Talks I've Given
-
Move Semantics,Perfect Forwarding, and Rvalue references
Featuring Scott Meyers
This session explains what move semantics is, how it affects program performance, and how programmers can control it. It also examines another new C++0x feature, perfect forwarding, because effective use of move semantics takes advantage of it.
move-semantics c++ c++0x -
CPU Caches and Why You Care
Featuring Scott Meyers
This session provides a wide-ranging overview of your CPU caches, how they operate, and how that affects high-level decisions on things like data structures and traversal strategies. Both single- and multi-threaded execution are considered.