March 18, 2005

哪些是经典STL书籍?看看老外怎么说。

作者: winter

前面几本都有中文版本,看来确实属于经典。

 

REVIEW Generic Programming and the STL: 
Using and Extending the C++ Standard Template Library
Matthew H. Austern 
Addison Wesley Longman, October 1998 
ISBN: 0201309564
Written by the principal author of SGI?s implementation of the STL. A sophisticated book about the underlying concepts of the STL. Definitely not a tutorial, but helpful in understanding the STL as an extensible framework.     
REVIEW Effective STL: 50 Specific Ways to Improve Your Use of the Standard Template Library
Scott Meyers
Addison-Wesley, June 2001
ISBN: 0201749629
Written by the author of "(More) Effective C++". Covers traps and pitfalls in using the STL.  Covers a number of issues that I discuss in my STL seminar.  Recommended follow-up reading for course attendants.    
REVIEW STL Tutorial & Reference Guide: 
C++ Programming With the Standard Template Library, Second Edition
David R. Musser, Gillmer J. Derge, Atul Saini 
Addison-Wesley, March 2001 
ISBN: 0201633981
Written by the David Musser, who worked with the STL?s creator on the first implementation of the STL. Still one of the best tutorials on the STL. Recommended reading for STL novices.    
REVIEW The C++ Standard Library: A Tutorial and Reference 
Author: Nicolai M. Josuttis 
Addison-Wesley, August 1999 
ISBN: 0201379260 
A popular book about the entire standard library, not just the STL. A good tutorial and excellent reference that impresses by detail and scope.    
  C++ in a Nutshell
Ray Lischner
O'Reilly & Associates, Mai 2003
ISBN: 059600298X
A comprehensive reference to the language and the standard library.  The book is amazingly good. The library reference has entries for all parts of the standard C++ library plus a complete reference of the standard C library. The language part is equally excellent and even explains widely unknown language features such as sequence points and argument dependent name lookup (also known as "Koenig" lookup). Definitely not a book for learning the language, but an excellent reference to the language.    
REVIEW The C++ Standard Template Library
P. J. Plauger, Alexander A. Stepanov, Meng Lee, A. Alexander, David R. Musser 
Prentice Hall, December 2000 
ISBN: 0134376331
Explains an implementation of the STL.  Useful if you want to gain a deeper understanding of the underlying mechanics of the STL. Not recommended if you are looking for a book that explains how to use the STL.    
  STL for C++ Programmers
Leen Ammeraal 
John Wiley, April 1997 
ISBN: 0471971812 
  The Stl Primer
Graham Glass, Brett L. Schuchert 
Prentice Hall, February 1996 
ISBN: 0134549767 
  Designing Components With the C++ STL:  A New Approach to Programming
Ulrich Breymann 
Addison-Wesley,  February 1998 
ISBN: 0201178168 
only available in German Die C++-Standardbibliothek - Einführung und Nachschlagewerk
Stefan Kuhlins & Martin Schader
Springer-Verlag, November 1998
ISBN: 3540650520
This book was highly recommended by a student of mine (Otto Böhrer, SAP AG) who brought this book to an STL seminar for further reference. From what I have seen it is comprehensive, up-to-date, and notably structured (lots of useful diagrams and tables that aid orientation and understanding).    
    Data Structures in C++ Using the Standard Template Library
Timothy Budd 
Addison-Wesley, October 1997 
ISBN: 0201308797
    Using the STL : The C++ Standard Template Library
Robert Robson 
Springer Verlag, February 1998 
ISBN: 0387982043
    C++ Programmer's Guide to the Standard Template Library
Mark Nelson
IDG Books, December 1995 
ISBN: 1568843143

相关文章
C++ STL(标准模板库) 学习资源 | 引用