Items related to C++ Gotchas: Avoiding Common Problems in Coding and...

C++ Gotchas: Avoiding Common Problems in Coding and Design - Softcover

  • 4.06 out of 5 stars
    53 ratings by Goodreads
 
9780321125187: C++ Gotchas: Avoiding Common Problems in Coding and Design

Synopsis

The professional programmer's guide to avoiding and correcting ninety-nine of the most common, destructive, and interesting C++ design and programming errors. Serves as an inside look at the more subtle C++ features and programming techniques. Softcover.

"synopsis" may belong to another edition of this title.

About the Author

Stephen C. Dewhurst was among the first users of C++ at Bell Labs. He has more than twenty years of experience in applying C++ to problem areas such as compiler design, securities trading, e-commerce, and embedded telecommunications. He is the author and coauthor of several books on C++ and is a member of the advisory board for The C++ Source, a contributing editor for C/C++ Users Journal, and a former columnist for C++ Report. He is also the author of two C++ compilers and numerous articles on compiler design and C++ programming techniques.



0321125185AB02022005

From the Back Cover

"This may well be the best C++ book I have ever read. I was surprised by the amount I learned."

--Matthew Wilson, Development Consultant, Synesis Software

C++ Gotchas is the professional programmer's guide to avoiding and correcting ninety-nine of the most common, destructive, and interesting C++ design and programming errors. It also serves as an inside look at the more subtle C++ features and programming techniques.

This book discusses basic errors present in almost all C++ code, as well as complex mistakes in syntax, preprocessing, conversions, initialization, memory and resource management, polymorphism, class design, and hierarchy design. Each error and its repercussions are explained in context, and the resolution of each problem is detailed and demonstrated.

Author Stephen Dewhurst supplies readers with idioms and design patterns that can be used to generate customized solutions for common problems. Readers will also learn more about commonly misunderstood features of C++ used in advanced programming and design. A companion Web site, located at http://www.semantics.org, includes detailed code samples from the book.

Readers will discover:

  • How to escape both common and complex traps associated with C++
  • How to produce more reusable, maintainable code
  • Advanced C++ programming techniques
  • Nuances of the C++ language

C++ Gotchas shows how to navigate through the greatest dangers in C++ programming, and gives programmers the practical know-how they need to gain expert status.



0321125185B10212002

From the Inside Flap

This book is the result of nearly two decades of minor frustrations, serious bugs, late nights, and weekends spent involuntarily at the keyboard. This collection consists of 99 of some of the more common, severe, or interesting C++ gotchas, most of which I have (I'm sorry to say) experienced personally.The term "gotcha" has a rather cloudy history, and a variety of definitions. For the purposes of this book, we'll define C++ gotchas as common and preventable problems in C++ programming and design. The gotchas described here run the gamut from minor syntactic annoyances to basic design flaws to full-blown sociopathic behavior. Almost ten years ago, I started including notes about individual gotchas in my C++ course material. My feeling was that pointing out these common misconceptions and misapplications in apposition to correct use would have the effect of inoculating the student against them, and help to prevent new generations of C++ programmers from repeating the gotchas of the past. By and large, the approach worked, and I was induced to collect sets of related gotchas together for presentation at conferences. These presentations proved to be popular (misery loves company?) and I was encouraged to write a "gotcha" book.Any discussion of avoiding or recovering from C++ gotchas involves other subjects, most commonly design patterns, idioms, and technical details of C++ language features.This is not a book about design patterns, but we often find ourselves referring to patterns as a means of avoiding or recovering from a particular gotcha. Conventionally, the pattern name is capitalized, as in "Template Method" pattern or "Bridge" pattern. When we mention a pattern, we describe its mechanics briefly if they are simple, but delegate detailed discussion of patterns to works devoted to them. Unless otherwise noted, a fuller description of a pattern, as well as a richer discussion of patterns in general, may be found in Design Patterns. Descriptions of the Acyclic Visitor, Monostate, and Null Object patterns may be found in Agile Software Development (see the bibliography).From the perspective of gotchas, design patterns have two important properties. First, they describe proven, successful design techniques that can be customized in a context-dependent way to new design situations. Second, and perhaps more importantly, mentioning the application of a particular pattern serves to document not only the technique that is applied, but also the reasons for its application and the effect of having applied it. For example, when we see that the Bridge pattern has been applied to a design, we know at a simple mechanical level that an abstract data type implementation has been separated into an interface class and an implementation class. Additionally, we know that the reason this was done was to separate strongly the interface from the implementation, so that changes to the implementation will not affect users of the interface. We also know that there is a runtime cost for this separation, how the source code for the abstract data type should be arranged, and many other details. A pattern name is an efficient, unambiguous handle to a wealth of information and experience about a technique, and careful, accurate use of patterns and pattern terminology in design and documentation clarify code and help to prevent gotchas from occurring.C++ is a complex programming language, and the more complex a language is, the more important is the use of idiom in programming. For a programming language, an idiom is a commonly used and generally understood combination of lower-level language features that produces a higher-level construct, in much the same way that patterns do at higher levels of design. Therefore, in C++ we can discuss copy operations, function objects, smart pointers, and throwing an exception without having to specify these concepts at their lowest level of implementation. It is important to note that an idiom is not only a common combination of language features, but also a common set of expectations about how these combined features should behave. What do copy operations mean? What can we expect to happen when an exception is thrown? Much of the advice found in this book involves being aware of and employing idioms in C++ coding and design. Many of the gotchas listed here could be described simply as departing from a particular C++ idiom, and the accompanying solution to the problem could often be described simply as following the appropriate idiom (see Gotcha #10).A significant portion of this book is spent in describing the nuances of certain areas of the C++ language that are commonly misunderstood and frequently lead to gotchas. While some of this material may have an esoteric feel to it, unfamiliarity with these areas of the language is a source of problems and a barrier to expert use of C++. These "dark corners" of the language also make an interesting and profitable study in themselves. They are in the C++ language for a reason, and expert C++ programmers often find use for them in advanced programming and design.Another area of connection between gotchas and design patterns is the similar importance of describing relatively simple instances. Simple patterns are important. In some respects, they may be more important than technically difficult patterns because they are likely to be more commonly employed. The benefits obtained from the pattern description will, therefore, be leveraged over a larger body of code and design. In much the same way, the gotchas described in this book range over a wide range of difficulty, from a simple exhortation to act like a responsible professional (Gotcha #12) to warnings to avoid misunderstanding the dominance rule under virtual inheritance (Gotcha #79). But, as in the analogous case with patterns, acting responsibly is probably more commonly applicable on a day-to-day basis than is the dominance rule.Two common themes run through the presentation. The first is the overriding importance of convention. This is especially important in a complex language like C++. Adherence to established convention allows us to communicate efficiently and accurately with others. The second theme is the recognition that others will maintain the code we write. The maintenance may be direct, so that our code must be readily and generally understood by competent maintainers; or it may be indirect, in which case we must ensure that our code remains correct even as its behavior is modified by remote changes.The gotchas in this book are presented as a collection of short essays, each of which describes a gotcha, or a set of related gotchas, along with suggestions for avoiding or correcting them. I'm not sure that any book about gotchas can be entirely cohesive, due to the anarchistic nature of the subject. However, the gotchas are grouped into chapters according to their general nature or area of (mis)applicability. Additionally, discussion of one gotcha inevitably touches on others. Where it makes sense to do so--and it generally does--I've made these links explicit. Cohesion within each item is sometimes at risk as well. Often it is necessary, before getting to the description of a particular gotcha, to describe the context in which it appears. That description, in turn, may require discussion of a technique, idiom, pattern, or language nuance that may lead us even further afield before we return to the advertised gotcha. I've tried to keep this meandering to a minimum, but it would have been dishonest, I think, to attempt to avoid it entirely. Effective programming in C++ involves intelligent coordination of so many disparate areas, that it's impractical to imagine that one can examine its etiology effectively without involving a similar eclectic collection of topics.It is certainly not necessary--and possibly inadvisable--to read this book straight through from Gotcha #1 to Gotcha #99. Such a concentrated dose of mayhem may put you off programming in C++ altogether. A better approach may be to start with a gotcha that you have experienced or with one that sounds interesting, and follow links to related gotchas. Alternatively, you may sample the gotchas at random.The text employs a number of devices that are intended to clarify the presentation. First, incorrect or inadvisable code is indicated by a grey background, whereas correct and proper code is presented with no background. Second, code that appears in the text has been edited for brevity and clarity. As a result, it is often the case that the examples, as presented, will not compile without additional, supporting code. The source code for non-trivial examples is available from the author's web site: semantics. All such code is indicated in the text by an abbreviated pathname appearing near the code example, as in gotcha00/somecode.cpp.Finally, a warning: The one thing you should not do with gotchas is elevate them to the same status as idioms or patterns. One of the signs that you're using patterns and idiom properly is that the pattern or idiom appropriate to the design or coding context will arise "spontaneously" from your subconscious just when you need it. However, you do not want to encourage a similar spontaneous recall of gotchas, since you're interested in how to produce an effective design or correct code, not how to produce a failed design and buggy code. Rather, learning to recognize a gotcha is analogous to a conditioned response to danger: once burned, twice shy. The recollection of the appropriate gotcha is triggered by its presence; it is not considered and rejected a priori. However, as with matches and firearms, it is not necessary to suffer a burn or a gunshot wound to the head personally to learn how to recognize and avoid a dangerous situation; generally all that's necessary is advance warning. Consider this collection as a means to keep your head in the face of C++ gotchas.Stephen C. DewhurstCarver, MassachusettsJuly 2002 0321125185P07192002

"About this title" may belong to another edition of this title.

Buy Used

Condition: Very Good
Item in very good condition! Textbooks...
View this item

FREE shipping within U.S.A.

Destination, rates & speeds

Buy New

View this item

US$ 13.50 shipping from United Kingdom to U.S.A.

Destination, rates & speeds

Search results for C++ Gotchas: Avoiding Common Problems in Coding and...

Stock Image

Dewhurst, Stephen C.
Published by Addison-Wesley Professional, 2002
ISBN 10: 0321125185 ISBN 13: 9780321125187
Used Softcover

Seller: SecondSale, Montgomery, IL, U.S.A.

Seller rating 4 out of 5 stars 4-star rating, Learn more about seller ratings

Condition: Very Good. Item in very good condition! Textbooks may not include supplemental items i.e. CDs, access codes etc. Seller Inventory # 00087532455

Contact seller

Buy Used

US$ 3.95
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Dewhurst, Stephen C.
Published by Addison-Wesley Professional, 2002
ISBN 10: 0321125185 ISBN 13: 9780321125187
Used Softcover

Seller: SecondSale, Montgomery, IL, U.S.A.

Seller rating 4 out of 5 stars 4-star rating, Learn more about seller ratings

Condition: Good. Item in good condition. Textbooks may not include supplemental items i.e. CDs, access codes etc. Seller Inventory # 00088821213

Contact seller

Buy Used

US$ 3.95
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Dewhurst, Stephen C.
Published by Addison-Wesley Professional, 2002
ISBN 10: 0321125185 ISBN 13: 9780321125187
Used paperback

Seller: Orion Tech, Kingwood, TX, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

paperback. Condition: Good. Seller Inventory # 0321125185-3-32525623

Contact seller

Buy Used

US$ 3.97
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Dewhurst, Stephen C.
Published by Addison Wesley Professional, 2002
ISBN 10: 0321125185 ISBN 13: 9780321125187
Used Softcover

Seller: Better World Books: West, Reno, NV, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: Very Good. Used book that is in excellent condition. May show signs of wear or have minor defects. Seller Inventory # 18295677-6

Contact seller

Buy Used

US$ 7.52
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Dewhurst, Stephen C.
Published by Addison Wesley Professional, 2002
ISBN 10: 0321125185 ISBN 13: 9780321125187
Used Softcover

Seller: Better World Books, Mishawaka, IN, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: Good. Former library book; may include library markings. Used book that is in clean, average condition without any missing pages. Seller Inventory # 7800957-6

Contact seller

Buy Used

US$ 7.52
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Dewhurst, Stephen C.
Published by Addison-Wesley Professional, 2002
ISBN 10: 0321125185 ISBN 13: 9780321125187
Used Paperback

Seller: HPB-Red, Dallas, TX, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Paperback. Condition: Good. Connecting readers with great books since 1972! Used textbooks may not include companion materials such as access codes, etc. May have some wear or writing/highlighting. We ship orders daily and Customer Service is our top priority! Seller Inventory # S_424499681

Contact seller

Buy Used

US$ 5.00
Convert currency
Shipping: US$ 3.75
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Dewhurst, Stephen C.
Published by Addison-Wesley Professional, 2002
ISBN 10: 0321125185 ISBN 13: 9780321125187
Used Paperback

Seller: HPB-Red, Dallas, TX, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Paperback. Condition: Acceptable. Connecting readers with great books since 1972. Used textbooks may not include companion materials such as access codes, etc. May have condition issues including wear and notes/highlighting. We ship orders daily and Customer Service is our top priority! Seller Inventory # S_425582819

Contact seller

Buy Used

US$ 5.00
Convert currency
Shipping: US$ 3.75
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Dewhurst, Stephen C.
Published by Addison-Wesley Professional, 2002
ISBN 10: 0321125185 ISBN 13: 9780321125187
Used Paperback

Seller: ThriftBooks-Reno, Reno, NV, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Paperback. Condition: Good. No Jacket. Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, Spend Less 1.23. Seller Inventory # G0321125185I3N00

Contact seller

Buy Used

US$ 8.91
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Dewhurst, Stephen C.
Published by Addison-Wesley Professional, 2002
ISBN 10: 0321125185 ISBN 13: 9780321125187
Used Paperback

Seller: ThriftBooks-Phoenix, Phoenix, AZ, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Paperback. Condition: Good. No Jacket. Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, Spend Less 1.23. Seller Inventory # G0321125185I3N00

Contact seller

Buy Used

US$ 8.91
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Dewhurst, Stephen C.
Published by Addison-Wesley Professional, 2002
ISBN 10: 0321125185 ISBN 13: 9780321125187
Used Paperback

Seller: ThriftBooks-Dallas, Dallas, TX, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Paperback. Condition: Fair. No Jacket. Readable copy. Pages may have considerable notes/highlighting. ~ ThriftBooks: Read More, Spend Less 1.23. Seller Inventory # G0321125185I5N00

Contact seller

Buy Used

US$ 8.93
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

There are 10 more copies of this book

View all search results for this book