Have one to sell? Sell yours here
Tell the Publisher!
I'd like to read this book on Kindle

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.
Sorry, this item is not available in
Image not available for
Color:
Image not available

To view this video download Flash Player

 

Effective C++: 50 Specific Ways to Improve Your Programs and Design (2nd Edition) (Addison-Wesley Professional Computing) [Paperback]

Scott Meyers
4.8 out of 5 stars  See all reviews (92 customer reviews)


Available from these sellers.


Free Two-Day Shipping for College Students with Amazon Student

Shop the new tech.book(store)
New! Introducing the tech.book(store), a hub for Software Developers and Architects, Networking Administrators, TPMs, and other technology professionals to find highly-rated and highly-relevant career resources. Shop books on programming and big data, or read this week's blog posts by authors and thought-leaders in the tech industry. > Shop now
There is a newer edition of this item:
Effective C++: 55 Specific Ways to Improve Your Programs and Designs (3rd Edition) Effective C++: 55 Specific Ways to Improve Your Programs and Designs (3rd Edition) 4.6 out of 5 stars (69)
$34.79
In Stock.

Book Description

September 2, 1997 0201924889 978-0201924886 2
The first edition of Effective C++ sold nearly 100,000 copies and was translated into four languages. It's easy to understand why. Scott Meyers' practical approach to C++ described the rules of thumb employed by the experts-the things they almost always do or almost always avoid doing-to produce clear, correct, efficient code. Each of this book's 50 guidelines summarizes a way to write better C++, and the accompanying discussions are backed by specific examples. For this new edition, Meyers reworked every guideline in the book. The result is exceptional adherence to C++'s Draft International Standard, current compiler technology, and the latest insights into the use of C++ for real-world applications.


Editorial Reviews

Amazon.com Review

This exceptionally useful text offers Scott Myers's expertise in C++ class design and programming tips. The second edition incorporates recent advances to C++ included in the ISO standard, including namespaces and built-in template classes, and is required reading for any working C++ developer.

The book opens with some hints for porting code from C to C++ and then moves on to the proper use of the new and delete operators in C++ for more robust memory management. The text then proceeds to class design, including the proper use of constructors, destructors, and overloaded operator functions for assignment within classes. (These guidelines ensure that you will create custom C++ classes that are fully functional data types, which can be copied and assigned just like built-in C++ classes.)

The author also provides a handful of suggestions for general class design, including strategies for using different types of inheritance and encapsulation. Never doctrinaire and always intelligent, these guidelines can make your C++ classes more robust and easier to maintain. --Richard Dragan

Review

Read the full review for this book.

Effective C++ CD is the HTML (Netscape-oriented) version of Scott Meyers' previous two works, Effective C++, Second Edition and More Effective C++. Additionally, five supplementary magazine articles appear in the collection. There are also links to relevant material on the Web which that been added to the current edition and which did not appear in the print edition.

Scott Meyers' work is so well known as scarcely to need introduction. Respect for his C++ acumen and pedagogic skills is so widespread that I was prepared to thoroughly detest his work, which I have encountered often but barely deigned to read to date.

On close examination, I find Meyers' books to be superb.

Of the 50 catechismic "Items" in the body of Effective C++, the vast majority are of critical importance to solid C++ programming. Virtually everything Scott Meyers suggests on these subjects is germane and practical. Where one could conceivably differ with Meyers' approach, his is nevertheless an entirely sound approach.

The second volume, More Effective C++, is cast in the same mold as the first volume. Here the discussion of 35 further "Items" tends to devolve somewhat towards matters of style. However, these are still critical issues being raised that the intermediate C++ programmer must confront sooner or later, athey are shipped too early. They fail because they arenthey are shipped too early. They fail because they arens presented in Meyers' rich and sympathetic tutorial prose. --Jack Woehr, Dr. Dobb's Journal -- Dr. Dobb's Journal


Product Details

  • Paperback: 256 pages
  • Publisher: Addison-Wesley Professional; 2 edition (September 2, 1997)
  • Language: English
  • ISBN-10: 0201924889
  • ISBN-13: 978-0201924886
  • Product Dimensions: 9.2 x 7.4 x 0.6 inches
  • Shipping Weight: 1.1 pounds
  • Average Customer Review: 4.8 out of 5 stars  See all reviews (92 customer reviews)
  • Amazon Best Sellers Rank: #343,976 in Books (See Top 100 in Books)

More About the Author

Scott Meyers is one of the world's foremost experts on C++ software development. He offers training and consulting services to clients worldwide.

Scott wrote the best-selling Effective C++ series (Effective C++, More Effective C++, and Effective STL), wrote and designed the innovative Effective C++ CD, is consulting editor for Addison Wesley's Effective Software Development Series, and was a founding member of the Advisory Board for The C++ Source. He has served as a technical advisor to several start-up companies, and he received the 2009 Dr. Dobb's Excellence in Programming Award. A programmer since 1972, he holds an M.S. in Computer Science from Stanford University and a Ph.D. from Brown University.

Customer Reviews

Anyone who plans on programming with C++ should read this book. Brian Robinson  |  20 reviewers made a similar statement
Scott's easy-going writing style makes the explanations easy to read and digest. W. Hazard  |  15 reviewers made a similar statement
Most Helpful Customer Reviews
81 of 86 people found the following review helpful
5.0 out of 5 stars Don't write C++ code without it... March 3, 2000
Format:Paperback
From beginning to end this book is packed with information that is IMMEDIATELY applicable. For example "Always declare destructors to be virtual" otherwise you may end leaking memory when subclasses are deleted. Or hiding the implementation of a class in an "Impl" that your class just passes through to. That way, if the implementation changes, the clients of the class are protected from recompilation.

Beyond the wealth of just downright practical information the oragization is fabulous. The only other technical book that has organization as good as this one is "Design Patterns" There are several chapters such as "Memory Management" that have "Items" and each item has a few paragraphs describing the motivation for why you should believe Meyers with examples to prove it. Then there are solid examples that show the implemantation of an example usage.

My company gave this book out with "Design Patterns" to EVERY developer in the company, and it was probably the smartest thing I've ever seen a company do.

Read it and learn a TON.

Comment | 
Was this review helpful to you?
32 of 36 people found the following review helpful
4.0 out of 5 stars Terrific coverage of fundamental C++ techniques December 18, 1999
Format:Paperback
An absolutely terrific book focusing on basic C++ and object-oriented programming techniques. A crucial book for anyone new to C++ to read.

While _Effective C++_ is an important and fundamental part of any C++ programmer's library, truly advanced C++ engineers are likely familiar with most or all of the techniques presented here (dynamic allocation, constructors, basic coding style, etc.). Scott Meyers' second book, _More Effective C++_, covers significantly more advanced techniques which the experienced programmer may not have encountered in everyday code and which may be more instructive. It is only in deference to that book that I have given this one 4 (or, if I could, 4.9) stars.

Comment | 
Was this review helpful to you?
14 of 14 people found the following review helpful
5.0 out of 5 stars Great January 6, 2001
Format:Paperback
There seems to be a whole slew of books out titled "<adjective> C++" and I suspect this was the first. If not, it should at least be the model.

The book is set up as 50 small chapters describing particular principles. Each is useful and clearly-presented in a manner that is not daunting.

I've read many C++ books, including many of the <adjective> books and I have no problem proclaiming this as simply the best. Other books may cover more ground (Stroustrup's books, for example), others may be more current and others may be more advanced (I've recently been humbled by "Exceptional C++") but I think "Effective C++" is the most useful.

If you're looking for a book to teach you the language, or if you're just learning the language, I'd say wait a little while before reading this book. If you've been writing code and haven't read this book, go for it. Although it's dated (pre-standard library) the concepts it covers are important ones that have not disappeared after standardization.

I hope that when I write my book, "Extraterrestrial C++," I can do half as good a job.

Comment | 
Was this review helpful to you?
Most Recent Customer Reviews
5.0 out of 5 stars great.
I'm a C++ programmer with 20+ years experience, but needed to check out the book for an interview. I was impressed that it was well written, but dont think I really learned... Read more
Published on November 15, 2010 by Norman Bo Graham
5.0 out of 5 stars A worth to have
You can't say you know C++ if you have not read it. I would put 6 stars if I could.
Published on April 18, 2010 by DoubleT
3.0 out of 5 stars Highly recommended for a new to moderately experienced C++ programmer...
I started reading this book when i had about 6 years of C++ experience when preparing for an interview so wanted to brush up some concepts. Read more
Published on December 30, 2009 by Yogesh Arora
4.0 out of 5 stars High quality book, but mostly trivia
I think this is a high quality book, along with its sequel "More effective C++."
However, if you already have enough experience in programming or at the very least have been... Read more
Published on March 2, 2009 by Yuanchyuan Sheu
4.0 out of 5 stars 50 gems every good C++ programmer should know by heart
The subtitle of the book '50 specific ways to improve your programs and designs' is a pretty good summary of what this book is all about. Read more
Published on October 28, 2005 by Sören Meyer-Eppler
5.0 out of 5 stars Must have
This is an outstanding book. I love the friendly, conversational style. It anticipates all the pitfalls and questions the reader will likely have. Read more
Published on May 19, 2005 by Matthew Walsh
5.0 out of 5 stars The book should be called "Defective C++"
Basically this book documents all the ways that Bjarne Stroustrup invented to hang yourself using C++ in a succinct 250 pages - an amazing accomplishment. Read more
Published on April 22, 2005 by D. Blickstein
5.0 out of 5 stars Save years of debugging time!
Memorize this book and it will take less time than all the wasted hours you spent debugging your C++ code. Read more
Published on January 24, 2005 by Texas Techie
5.0 out of 5 stars An essential if you are a C++ programmer
This is one of the most useful and knowledgeable books on the pitfalls of developing in C++ that I have ever read. Read more
Published on November 23, 2004 by J. W. Ward
5.0 out of 5 stars Deserves more than 5 stars.
Simply put, one of the best, if not THE best, books I have ever read on C++ (or any language). Assumes the reader knows the basics of the language. Read more
Published on October 20, 2004 by Robert Evans
Search Customer Reviews
Only search this product's reviews


Sell a Digital Version of This Book in the Kindle Store

If you are a publisher or author and hold the digital rights to a book, you can sell a digital version of it in our Kindle Store. Learn more

Forums

Topic From this Discussion
Does Effective C++ for Kindle include More Effective C++ too?
There's a 3-in-1 bundle of Effective C++: Effective C++ Digital Collection: 140 Ways to Improve Your Programming
http://www.amazon.com/Effective-Digital-Collection-Programming-ebook/dp/B008E30L9A/ref=wl_it_dp_o_pC_nS_nC?ie=UTF8&colid=Y6KQ894KR334&coliid=II6V1065QHKZR
Oct 2, 2012 by Wojciech Migda |  See all 3 posts
Have something you'd like to share about this product?
Start a new discussion
Topic:
First post:
Prompts for sign-in
 


Search Customer Discussions
Search all Amazon discussions


So You'd Like to...



Look for Similar Items by Category