Effective Modern C++

本网站不提供下载链接,喜欢看书的朋友请关注公众号:【lennylee的碎碎念】(lennyleede),首页回复:授人以渔,自动获取搜索资源的方法。

内容简介:

Learn how to program expertly with C++ with this practical book from Scott Meyers, one of the world’s foremost authorities on this systems programming language. Scott Meyers takes some of the most difficult pieces of C++ code and unfurls them so that you can see how to manipulate your own project code. This is the first book to contain content written with the C++14 standard.

Tackle 42 separate C++ problems and solutions

Learn critical techniques for success on topics from smart pointers to lambda expressions

Understand key concepts by taking the C++ 98 standard to C++ 11 and then to C++ 14

作者简介:

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); published and maintains the annotated training materials Overview of the New C++ (C++11/14) and Effective C++ in an Embedded Environment; is Consulting Editor for the Effective Software Development Series, and, with Herb Sutter and Andrei Alexandrescu, is a principal in C++ and Beyond. He has a Ph.D in Computer Science from Brown University. He’s currently working on a new book, Effective Modern C++, which he expects to publish this fall.

原文摘录:

……create softerware that’s
correct
efficient
maintainable
portable (查看原文)

晨星
2019-05-03 23:54:45

—— 引自第1页

C++98 had a single set of rules for type deduction: the one for function templates.
C++11 modifies that ruleset a bit and add two more, one for auto and one for decltype.
C++14 then extends the usage contexts in which auto and decltype may be employed. (查看原文)

晨星
2019-05-03 23:58:38

—— 引自第9页