Learning C++
Accelerated C++
Andrew Koenig and Barbara Moo
Addison-Wesley, 2000
ISBN: 020170353X
Essential C++
Stan Lippman
Addison-Wesley, 1999
ISBN: 0201485184
The C++ Programming Language, Special Third Edition
Bjarne Stroustrup
Addison-Wesley, 2000
ISBN: 0201700735
Thinking in C++, 2nd Edition, Volume 1, (3rd Edition to appear)
Bruce Eckel
Prentice Hall, 2000
ISBN: 0139798099
Thinking in C++, 2nd Edition, Volume 2
Bruce Eckel and Chuck Allison
Prentice Hall, May 2003
ISBN: 0130353132
The C++ Standard LibraryNicolai Josuttis
Addison-Wesley, 1999
ISBN: 0201379260
STL Tutorial and Reference Guide, 2nd Edition
David R. Musser et al
Addison-Wesley, 2001
ISBN: 0201379236
Mastering C++
Large-Scale C++ Software Design
John Lakos
Addison-Wesley, 1996
ISBN: 0201633620
Effective C++, 2nd Edition
Scott Meyers
Addison-Wesley, 1997
ISBN: 0201924889
More Effective C++
Scott Meyers
Addison-Wesley, 1995
ISBN: 020163371X
Effective STL
Scott Meyers
Addison-Wesley, 2001
ISBN: 0201749629
Efficient C++
Dov Bulka and David Mayhew
Addison-Wesley, 1999
ISBN: 0201379503
Generic Programming and the STL
Matt Austern
Addison-Wesley, 1998
ISBN: 0201309564
Exceptional C++
Herb Sutter
Addison-Wesley, 2000
ISBN: 0201615622
More Exceptional C++
Herb Sutter
Addison-Wesley, 2001
ISBN: 020170434X
C++ FAQs, 2nd Edition
Marshall P. Cline, Greg A. Lomow, and Mike Girou
Addison-Wesley, 1998
ISBN: 0201309831
C++ Gotchas
Stephen Dewhurst
Addison-Wesley, 2002
ISBN: 0321125185
C++ Templates, The Complete Guide
David Vandervoorde and Nicolai M. Josuttis
Addison-Wesley, 2002
ISBN: 0201734842
Standard C++ IOStreams and Locales
Angelika Langer and Klaus Kreft
Addison-Wesley, 2000
ISBN: 0201183951
Design & Evolution of C++
Bjarne Stroustrup
Addison-Wesley, 1994
ISBN: 0201543303
Inside the C++ Object Model
Stan Lippman
Addison-Wesley, 1996
ISBN: 0201834545
The C++ Standard Template Library,
P.J. Plauger et al
Prentice Hall, 2000
ISBN: 0134376331
"Exception Safety in Generic Components"
David Abrahams
<
www.boost.org/more/error_handling.html>Advanced C++ Topics
Modern C++ Design
Andrei Alexandrescu
Addison-Wesley, 2001
ISBN: 0201704315
Generative Programming
Krzysztof Czarnecki & Ulrich Eisencecker
Addison-Wesley, 2000
ISBN: 0201309777
Multi-Paradigm Design for C++
James O. Coplien
Addison-Wesley, 1998
ISBN: 0201824671
发表时间: 2005-01-30 00:09
下面是回复:
XChinux 2005-01-30 01:04
Design & Evolution of C++
Bjarne Stroustrup
Inside the C++ Object Model
Stan Lippman
The C++ Standard Template Library,
P.J. Plauger et al
The C++ Standard LibraryNicolai Josuttis
Addison-Wesley, 1999
ISBN: 0201379260
The C++ Programming Language, Special Third Edition
Bjarne Stroustrup
Thinking in C++, 2nd Edition, Volume 1, (3rd Edition to appear)
Bruce Eckel
少了一本书啊,《C++ Primer》3rd
风中纸页 发表时间: 2005-01-31 16:14
我写的那些是cuj建议的。:)
XChinux 发表时间: 2005-02-01 13:04 |
C++新书快递
C++新书快递
贴出书名字把
1、
C++ Coding Standards: 101 Rules, Guidelines, and Best Practices
By Herb Sutter, Andrei Alexandrescu
Published by Addison Wesley Professional
C+ +标准委员会主席Herb Sutter和世界上最厉害的C++专家之一Andrei Alexandrescu,汇总全球C++社群的经验,联袂写就本书。和一般肤浅的C++编码风格指南不同,本书还阐明了诸如“何时应该结合使用静态多态和动态多态技术”之类的高级问题。这本书为世界上任何C++开发团队制定自己的规范提供了权威基础,必将成为C++程序员的“圣经”。
2、
Imperfect C++: Practical Solutions for Real-Life Programming
By Matthew Wilson
Published by Addison Wesley Professional
C++是一门非凡的语言,但它并不完美。STLSoft主要创建者Matthew不但指出C++的不尽如人意之处,还提供了经过实践检验的技术、工具以及经验,便于我们编写出更为强建、高效、灵活的代码。Matthew文笔极佳,本书极富阅读趣味。
3、
C++ Primer, 4th Edition
By Stanley B. Lippman, Barbara E. Moo, Josée LaJoie.
Published by Addison Wesley Professional
世界上最畅销的C++初学者用书。这个大幅修订版希望能够满足现代C++编程学习之所需,并使新手更容易入门、老手从中获益更多。
4、
C++ Template Metaprogramming:Concepts,Tools,and Techniques from Boost and Beyond
By David Abrahams, Aleksey Gurtovoy
Published by Addison Wesley Professional
本书由Boost库发起者之一、Boost顶尖开发专家David Abrahams领衔写作,第一次向你揭示C++模板元编程的来龙去脉。致力于攀登C++泛型编程巅峰的朋友绝不可错过这本书。
5、
Exceptional C++ Style: 40 New Engineering Puzzles, Programming Problems, and
Solutions
By Herb Sutter
Published by Addison Wesley Professional
Sample Chapter
《Exceptional C++》又一姊妹作。一如既往轻薄洗练,一如既往让人挠头。Herb是一个真正聪明的C++语言专家!我怀疑世界上没有第二个C++技术作家能像Herb这样深入细节。
6、
C++ Common Knowledge: Essential Intermediate Programming
By Stephen Dewhurst
Published by Addison Wesley Professional
继《C++ Gotchas》之后Stephen推出的又一佳作,将延续其招牌式的尖锐风格。Stephen总结的63个条款乃是现代职业C++程序员必备知识。我相信本书的内容远比其名字更吸引人。
7、
You Can Do It! : A Beginners Introduction to Computer Programming
by Francis Glassborow
Published by John Wiley & Sons
ACCU前主席Francis Glassborow携30余年的编程和教学经验,以及成百上千本C++书籍评阅经验,为完完全全的(C++)编程初学者编写了这本互动教程。
风中纸页 发表时间: 2005-02-01 13:51
要加紧看书了,嘿嘿,敌众我寡啊!嘿嘿。。。
XChinux 发表时间: 2005-02-01 15:01
第一种本C++ Coding Standard出来的话我一定买。
风中纸页 发表时间: 2005-02-01 21:57
英文版应该有的。
supfire 发表时间: 2005-02-08 19:26
干吗看那么多书啊,能理解多少。主要是认真看几本好书
了!
XChinux 发表时间: 2005-02-24 13:27
所以啊,在学校的时候不要浪费光阴,要多看书....
风中纸页 发表时间: 2005-02-24 15:57
书还是要多看的。
当然不能走马观花~