Home Page -------------------
[Home Page] - [Reviews Main]
-------------------

Book Review
The Draft Standard C++ Library by P J Plauger
Recommended with Reservations
ISBN: 0-13-117003-1       Publisher: Prentice Hall       Pages: 590pp       Price: £23-95
Categories:   reference     advanced c++    
Reviewed by Chris Simons in C Vu 7-3 (Mar 1995)
The Draft Standard C++ Library suffers from the fact that the Standard C++ Library was at draft stage at the time of writing.

Comment:
and still is - Francis Glassborow.
A number of changes to the standard have been made since. I am grateful to Kevlin Hennney for the following:

bool is a built-in type, so functions returning int with boolean semantics (e.g. isspace) now return bool instead.

basic_string< > is a template for building strings, so that string and wstring become:

 typedef basic_string< char > string;
 typedef basic_string< wchar_t > wstring;
strstream has been deprecated in favour of stringstream.

some smart pointer types have been added.

Perhaps the biggest omission from the book is the Standard Template Library (STL) which will almost certainly be part of any Standard C++ library.

This type of book will be a welcome addition to any C++ programmer's book shelf. Unfortunately, the author appears to have gone to print too soon. However, when the final Standard C++ Library appears and this book is updated, I will certainly acquire a copy.


Other Authors with the same surname

Plauger
ANSI & ISO Standard C by Jim Brodie & P J Plauger [Highly Recommended]  (Reviewed May 1992)
C++ Standard Template Library, The by Lee & Musser & Plauger & Stepanov [Not Recommended]  (Reviewed Apr 2001)
Programming on Purpose III by P.J. Plauger
Standard C Library, The by Plauger [Highly Recommended]  (Reviewed Mar 1992)
Standard C, A Reference (new version) by Jim Brodie & P J Plauger [Recommended]  (Reviewed Jul 1996)
Standard C by Jim Brodie & P J Plauger [Highly Recommended]  (Reviewed May 1991)
Standard C by Jim Brodie & P J Plauger [Recommended]  (Reviewed Mar 1992)


Last Update - 13 May 2001.

To link to this review, please use the URL: http://www.accu.org/bookreviews/public/reviews/d/d000499.htm

Copyright © The Association of C & C++ Users 1998-2000. All rights reserved.

Mirrored from http://www.accu.org/