Customer Reviews


6 Reviews
5 star:
 (3)
4 star:
 (2)
3 star:    (0)
2 star:    (0)
1 star:
 (1)
 
 
 
 
 
Average Customer Review
Share your thoughts with other customers
Create your own review
 
 
Only search this product's reviews

The most helpful favorable review
The most helpful critical review


9 of 9 people found the following review helpful:
4.0 out of 5 stars The author is fun, the book is interesting.
This is the a unique book I've read during my life. Its style is exceptionally relax.

It discusses some confusing c++ syntax and three special themes: indirection (smart pointer etc), homomorphic class hierachies (multiple dispatch, envelope-letter idiom) and memory spaces (reference counting techniques and relateds classes).

Some chpaters are especially...

Published on May 31, 2000 by ZhongDan LAN

versus
4 of 9 people found the following review helpful:
1.0 out of 5 stars Out of date & full of mistakes
For the first time in my life I returned this book to the library. It is full of mistakes and so out of date that a lot of the discussion is either irrelevant or redundant. It uses old-style casts, is not const-correct, doesn't make any reference to the standard library. I've even seen a '#define kPoolSize 4096'! (p. 285) This is supposed to be an advanced book on C++...
Published on July 9, 1998


Most Helpful First | Newest First

9 of 9 people found the following review helpful:
4.0 out of 5 stars The author is fun, the book is interesting., May 31, 2000
By 
ZhongDan LAN (Newark, New Jersey, USA) - See all my reviews
(REAL NAME)   
This review is from: C++ for Real Programmers, Revised Edition (Paperback)
This is the a unique book I've read during my life. Its style is exceptionally relax.

It discusses some confusing c++ syntax and three special themes: indirection (smart pointer etc), homomorphic class hierachies (multiple dispatch, envelope-letter idiom) and memory spaces (reference counting techniques and relateds classes).

Some chpaters are especially intersting, for example:

Chapter 8 about collections, cursors, and iterators, the cursor idiom was also discussed in <<More effective c++>> as proxy, here, it is treated as kind of smart pointer.

chapter 9 about transactions, which discussions how to implement this important feature with brillang pointers (variation of smart pointer)..

I agree with the customer from Princeton, USA that the book is out of date & contains mistakes, for example

It uses old-style casts, is not const-correct (rarely use const member functions), doesn't make any reference to the standard library. It does not use protected instead of public when defining a class used for base class only (page 78, class UnsafeNode). Other detail errors: for example, on page 100, the name of the template used is Ptr, and the template defined is SP; on page 156, class ArrayOfFoo contains member Foo** contents, constructed by contents(new Foo*[size]), and the destructor should be delete[] contents and not delete contents.

Some important design errors, for example, on page 108, you see a template SPOS (stands for "Smart Pointer for Object Statistics").

class Counter { ... public: int conversions; int members;

};

template <class Type> class SPOS { private: Type* pointee; public operator Type*() { pointeee->conversions++; return pointee; } }

It's better to hide data "members" and "converions" in private section of Counter, and define increment functions for conversions++ and members++.

It is not exception safe, as almost every c++ book, except <<Exceptional c++>>, for example, on page 119, we see

template class<class Type> class MP { private: Type* t; public: MP<Type>& opertor=(const MP<Type>& mp) { if (&mp != this) { delete t; t = new Type(*(mp.t)); } return this; } }

We should replace delete t; t = new Type(*(mp.t));

by (no self assignment test!)

Type *tnew=new Type(*(mp.t)); delete t; t=tnew;

Why? consider what happens if you delete t and an exception was thrown during t=new Type(*(mp.t)).

For this class, we can also consider reference counting to avoid copy, see <<More effective c++>> for a deeper discusion.

Overall, this is a good book, but not must have. You can read <<More effective c++>> and <<Advanced c++ styles and idioms>> instead, but reading this book really will open your eyes, since its point of view is different and sometimes it's deeper. Concentrate on its interesting ideas and pay attention to its potential mistakes.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2 of 2 people found the following review helpful:
4.0 out of 5 stars Exceptionally fun book, December 11, 1998
By A Customer
This review is from: C++ for Real Programmers, Revised Edition (Paperback)
Jeff's book isn't a tutorial, design handbook or step-by-step guide for C++ users, rather, it's an entry point into the C++ "Twilight Zone". It makes you think about C++ in completely new and exciting ways. I liked the book so much that I recommended it to all the members on my development team.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2 of 2 people found the following review helpful:
5.0 out of 5 stars Terrific in depth explanation of advanced C++ techniques, October 8, 1998
By A Customer
This review is from: C++ for Real Programmers, Revised Edition (Paperback)
A worthy addition to my C++ library. The fact that Meyers and More Meyers are truly worthy of their universal acclaim, doesn't detract, in the least, from the value of this extremely well written text. This book is aimed at competent C++ programmers who want an in depth look at the motivations behind and the ramifications of a few well chosen C++ mechanisms. The comprehensive treatment of topics such as smart pointers and memory management offers a great introduction to the potential behind the somtimes exasperating scope of C++. Jeff Alger provides a real service for his target audience. Bravo... And Thanks.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


1 of 1 people found the following review helpful:
5.0 out of 5 stars Cool book, July 29, 2001
By 
Vasya (Ukraine, Lviv) - See all my reviews
This review is from: C++ for Real Programmers, Revised Edition (Paperback)
Many books are about how to write code. This book is about how to design software. Also it is a reference to many classic programming problems with practical tips for resolving.

Jeff opens your eyes. This book in conjunction with Design Patterns, Advanced C++ Styles and Idioms, Effective C++ and More Effective C++ guarantees that you will sleep at night instead of caching bugs or rewriting the code :-)

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


3 of 4 people found the following review helpful:
5.0 out of 5 stars Same as "Secrets of the C++ Masters" plus *4pg* Java chapter, June 23, 1998
By A Customer
This review is from: C++ for Real Programmers, Revised Edition (Paperback)
This is a wonderful book (my favorite besides "Design Patterns"), see my review under the old title.

If you have a copy under the previous title, the changes are minimal, you *don't* need this revision.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


4 of 9 people found the following review helpful:
1.0 out of 5 stars Out of date & full of mistakes, July 9, 1998
By A Customer
This review is from: C++ for Real Programmers, Revised Edition (Paperback)
For the first time in my life I returned this book to the library. It is full of mistakes and so out of date that a lot of the discussion is either irrelevant or redundant. It uses old-style casts, is not const-correct, doesn't make any reference to the standard library. I've even seen a '#define kPoolSize 4096'! (p. 285) This is supposed to be an advanced book on C++ (although it repeats what exceptions and templates are) but read instead 'Design Patterns' and '(More) Effective C++'. You will know a lot more afterwards.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


Most Helpful First | Newest First

This product

C++ for Real Programmers, Revised Edition
C++ for Real Programmers, Revised Edition by Jeff Alger (Paperback - February 26, 1998)
Used & New from: $1.99
Add to wishlist See buying options