【C++】C++好书推荐

一、吴咏炜推荐

1、入门级

Bjarne Stroustrup, A Tour of C++, 2nd ed. Addison-Wesley, 2018
中文版:
王刚译,《C++ 语言导学》(第二版)。机械工业出版社,2019

Bjarne Stroustrup, The C++ Programming Language, 4th ed. Addison-Wesley, 2013
中文版:王刚、杨巨峰译《C++ 程序设计语言》。机械工业出版社, 2016

2、最佳实践

Scott Meyers, Effective C++: 55 Specific Ways to Improve Your Programs and Designs, 3rd ed. Addison-Wesley, 2005
中文版:侯捷译《Effective C++ 中文版》(第三版)。电子工业出版社,2011

Scott Meyers, Effective STL: 50 Specific Ways to Improve Your Use of the Standard Template Library. Addison-Wesley, 2001
中文版:潘爱民、陈铭、邹开红译《Effective STL 中文版》。清华大学出版社,2006

Scott Meyers, Effective Modern C++: 42 Specific Ways to Improve Your Use of C++11 and C++14. O’Reilly, 2014
中文版:高博译《Effective Modern C++ 中文版》。中国电力出版社,2018

3、深入学习

Herb Sutter, Exceptional C++: 47 Engineering Puzzles, Programming Problems, and Solutions. Addison-Wesley, 1999
中文版:卓小涛译《Exceptional C++ 中文版》。中国电力出版社,2003

Herb Sutter and Andrei Alexandrescu, C++ Coding Standards: 101 Rules, Guidelines, and Best Practices. Addison-Wesley, 2004
中文版:刘基诚译《C++ 编程规范:101 条规则准则与最佳实践》。人民邮电出版社,2006

侯捷,《STL 源码剖析》。华中科技大学出版社,2002

4、高级专题

Alexander A. Stepanov and Daniel E. Rose, From Mathematics to Generic Programming. Addison-Wesley, 2014
中文版:爱飞翔译《数学与泛型编程:高效编程的奥秘》。机械工业出版社,2017

Andrei Alexandrescu, Modern C++ Design: Generic Programming and Design Patterns Applied. Addison-Wesley, 2001
中文版:侯捷、於春景译《C++ 设计新思维》。华中科技大学出版社,2003

5、网站

C++ Reference. https://en.cppreference.comC++ Core Guidelines. https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines

二、某大神推荐

1、入门级

《C++ Primer》,这
Stanley B.Lippman 《Essential C++》四个C++的范型讲得非常清楚。

2、入门必读指南

《The Practice of Programming》程序设计中应该有哪些注意的事项

3、晋级

《Thinking in C++》
《Effective C++》
《More Effective C++》
《STL源码剖析》
《Inside the C++ Object Model》
《C++沉思录》
《The C++ Programming Language》

你可能感兴趣的:(C++,c++)