Effective Modern C++ by Scott Meyers
(www.oreilly.com) Effective Modern C++[Book] website
ROAM_REFS: https://www.oreilly.com/library/view/effective-modern-c/9781491908419/
- Effective Modern C++
Released
Publisher(s): O'Reilly Media, Inc.
ISBN: None
Read it now on the O'Reilly learning platform with a 10-day free trial.
O'Reilly members get unlimited access to books, live events, courses curated by job role, and more from O'Reilly and nearly 200 top publishers.
** Book description
None
Show and hide more
** Table of contents
- Copyright/Revision History
- From the Publisher
- Acknowledgments
- Introduction
- 1. Deducing Types
- 2. auto
- 3. Moving to Modern C++
- Item 7: Distinguish between () and {} when creating objects.
- Item 8: Prefer nullptr to 0 and NULL.
- Item 9: Prefer alias declarations to typedefs.
- Item 10: Prefer scoped enums to unscoped enums.
- Item 11: Prefer deleted functions to private undefined ones.
- Item 12: Declare overriding functions override.
- Item 13: Prefer constiterators to iterators.
- Item 14: Declare functions noexcept if they won’t emit exceptions.
- Item 15: Use constexpr whenever possible.
- Item 16: Make const member functions thread safe.
- Item 17: Understand special member function generation.
- 4. Smart Pointers
- Item 18: Use std::uniqueptr for exclusive-ownership resource management.
- Item 19: Use std::sharedptr for shared-ownership resource management.
- Item 20: Use std::weakptr for std::sharedptr-like pointers that can dangle.
- Item 21: Prefer std::makeunique and std::makeshared to direct use of new.
- Item 22: When using the Pimpl Idiom, define special member functions in the implementation file.
- 5. Rvalue References, Move Semantics, and Perfect Forwarding
- Item 23: Understand std::move and std::forward.
- Item 24: Distinguish universal references from rvalue references.
- Item 25: Use std::move on rvalue references, std::forward on universal references.
- Item 26: Avoid overloading on universal references.
- Item 27: Familiarize yourself with alternatives to overloading on universal references.
- Item 28: Understand reference collapsing.
- Item 29: Assume that move operations are not present, not cheap, and not used.
- Item 30: Familiarize yourself with perfect forwarding failure cases.
- 6. Lambda Expressions
- 7. The Concurrency API
- Item 35: Prefer task-based programming to thread-based.
- Item 36: Specify std::launch::async if asynchronicity is essential.
- Item 37: Make std::threads unjoinable on all paths.
- Item 38: Be aware of varying thread handle destructor behavior.
- Item 39: Consider void futures for one-shot event communication.
- Item 40: Use std::atomic for concurrency, volatile for special memory.
- 8. Tweaks
- Index
(www.aristeia.com) Scott Meyers: Effective Modern C++ website
ROAM_REFS: https://www.aristeia.com/EMC++.html
- Scott Meyers Training Courses: Effective Modern C++
Truly understanding C++11 and C++14 requires more than just familiarizing yourself with
autotype declarations, move semantics, lambda expressions, concurrency support, etc. You also need to learn how to use those features effectively so that your software is correct, efficient, maintainable, and portable. That's where this seminar comes in. It describes how to write truly great software using C++11 and C++14—i.e. using modern C++.This course is based on Scott's best-selling Effective Modern C++. All attendees will receive a copy of this book.
** Course Highlights
Participants will gain:
- Familiarity with how best practices in "old" C++ programming (i.e., C++98) change for modern C++.
- Awareness of the often-subtle performance implications of modern C++ features and techniques.
- An understanding of the relationships among
std::move,std::forward, rvalue references, and universal references.- Techniques for writing clear, correct, effective lambda expressions.
- Insights into the pros and cons of braced initialization,
noexceptspecifications, perfect forwarding, and smart pointermakefunctions.** Who Should Attend
Systems designers, programmers, and technical managers involved in the design, implementation, and maintenance of libraries and applications using C++11 and C++14. Participants should be familiar with the fundamental concepts introduced by C++11 (e.g., move semantics, multithreading, lambda expressions, smart pointers, etc.), but expertise is not required. (One way to acquire the appropriate background is through Scott's more introductory course, An Overview of the New C++ (C++11/14)).
** Format
Lecture and question/answer. There are no hands-on exercises, but participants are welcome — encouraged! — to bring computers to experiment with the material as it is presented.
** Length
Four full days (six to seven lecture hours per day).
** Detailed Topic Outline
- Preliminaries
- Distinguish lvalues and rvalues.
- Understand type deduction.
- (
auto-related) template type deduction autotype deduction- Observing deduced types
decltypetype deduction- Function return type deduction
- Understand
std::moveandstd::forward.- Moving to Modern C++
- Prefer
autoto explicit types when declaring objects.- Remember that
auto+{ =/=expr=/}= ⇒std::initializer_list.- Distinguish
()and{}when creating objects.- Prefer
nullptrto0andNULL.- Prefer scoped enums to unscoped enums.
- Prefer deleted functions to private undefined ones.
- Declare overriding functions
override.- Declare functions
noexceptif they won't emit exceptions.- Use
constexprwhenever possible.- Make
constmember functions thread-safe.- Smart Pointers
- Use
std::unique_ptrfor exclusive-ownership resource management.- Use
std::shared_ptrfor shared-ownership resource management.- Prefer
std::make_uniqueandstd::make_sharedto direct use ofnew.- Rvalue References, Move Semantics, and Perfect Forwarding
- Distinguish universal references from rvalue references.
- Pass and return rvalue references via
std::move, universal references viastd::forward.- Avoid overloading on universal references.
- Understand reference collapsing.
- Assume that move operations are not present, not cheap, and not used.
- Familiarize yourself with perfect forwarding failure cases.
- Lambda Expressions
- Avoid default capture modes.
- Use init capture to move objects into closures.
- Prefer lambdas to
std::bind.- The Concurrency API
- Make =std::thread=s unjoinable on all paths.
- Use
std::launch::asyncwithstd::asyncif asynchronicity is essential.- Be aware of varying thread handle destructor behavior.
- Create tasks, not threads.
- Consider
voidfutures for one-shot event communication.- Miscellaneous
- Consider emplacement instead of insertion.
- Resources for Further Information
For more information on this course, contact Scott directly.