阅读 Effective、More Effective 和 Effective Modern C++(和 STL)的首选顺序是什么?
What's the preferred sequence to read Effective, More Effective & Effective Modern C++ (and STL)?
我知道 More Effective C++ 是 Effective C++ 的扩展,而 Effective Modern C++ 侧重于 C++11 和 14。作为该语言的新手并且刚开始阅读这些书籍,我应该阅读 Effective Modern在前两个之后?另外,Effective STL 应该放在哪里?
阅读上述书籍的首选顺序是什么,因为每本书都建立在前几本书的内容之上? (假设里面的一切对我来说都是新的?)
此外,Effective Modern C++ 是否被视为 Effective C++ 的非官方下一版本?
可以从 Scott Meyers 网站上的 Books, etc. 摘要页面找到对此的答案:
Effective C++, Third Edition, 2005. Scott's flagship book, and the
industry's must-read second book on C++ (i.e., what you read after
you've learned the fundamentals of the language)
先读这个。
More Effective C++, 1996. Still relevant after nearly 20 years!
Indispensable in its own right, and an invaluable companion to
Effective C++
与 Effective C++ 一起阅读或之后阅读。
Effective Modern C++, 2014. The book on effective use of the features
new in “modern” C++ (i.e., C++11 and C++14). A complement to Scott’s
existing books
一旦您掌握了其他两个中的概念,请阅读这篇文章,因为它着重于该语言的更高版本中的变化。
Effective STL, 2001. 50 specific ways to improve your use of the STL,
including techniques for improving performance, eliminating resource
leaks, avoiding portability problems, and more — all in Scott's
inimitable style
虽然我建议在前两个之后和第三个之前阅读它,但这个不太清楚。
我知道 More Effective C++ 是 Effective C++ 的扩展,而 Effective Modern C++ 侧重于 C++11 和 14。作为该语言的新手并且刚开始阅读这些书籍,我应该阅读 Effective Modern在前两个之后?另外,Effective STL 应该放在哪里?
阅读上述书籍的首选顺序是什么,因为每本书都建立在前几本书的内容之上? (假设里面的一切对我来说都是新的?)
此外,Effective Modern C++ 是否被视为 Effective C++ 的非官方下一版本?
可以从 Scott Meyers 网站上的 Books, etc. 摘要页面找到对此的答案:
Effective C++, Third Edition, 2005. Scott's flagship book, and the industry's must-read second book on C++ (i.e., what you read after you've learned the fundamentals of the language)
先读这个。
More Effective C++, 1996. Still relevant after nearly 20 years! Indispensable in its own right, and an invaluable companion to Effective C++
与 Effective C++ 一起阅读或之后阅读。
Effective Modern C++, 2014. The book on effective use of the features new in “modern” C++ (i.e., C++11 and C++14). A complement to Scott’s existing books
一旦您掌握了其他两个中的概念,请阅读这篇文章,因为它着重于该语言的更高版本中的变化。
Effective STL, 2001. 50 specific ways to improve your use of the STL, including techniques for improving performance, eliminating resource leaks, avoiding portability problems, and more — all in Scott's inimitable style
虽然我建议在前两个之后和第三个之前阅读它,但这个不太清楚。