Home > Store > Programming > C/C++
More Exceptional C++: 40 New Engineering Puzzles, Programming Problems, and Solutions
- By Herb Sutter
- Published Dec 17, 2001 by Addison-Wesley Professional. Part of the C++ In-Depth Series series.
- Copyright 2002
- Dimensions: 7-3/8x9-1/4
- Pages: 304
- Edition: 1st
- Book
- ISBN-10: 0-201-70434-X
- ISBN-13: 978-0-201-70434-1
Register your product to gain access to bonus material or receive a coupon.
Product Author Bios
Herb Sutter is the author of three highly acclaimed books, Exceptional C++ Style, Exceptional C++, and More Exceptional C++ (Addison-Wesley). He chairs the ISO C++ standards committee, and is contributing editor and columnist for C/C++ Users Journal. As a software architect for Microsoft, Sutter leads the design of C++ language extensions for .NET programming.
Organized in a practical problem-and-solution format, More Exceptional C++ picks up where the widely acclaimed Exceptional C++ leaves off, providing successful strategies for solving real-world problems in C++. Drawing from years of in-the-trenches experience, Herb Sutter provides tested techniques and practical solutions for programmers designing modern software systems with C++, from small projects to enterprise applications.
Built around forty programming puzzles, More Exceptional C++ helps you understand the rules and issues critical to successful software design and development in C++. New themes included in this sequel place a strong emphasis on generic programming, memory management, and using the C++ standard library, including coverage of important techniques like traits and predicates. Also included are guidelines and considerations to remember when using standard containers and algorithms--topics rarely covered in-depth in other sources.
Readers will find solutions to such important questions as:- What pitfalls might you encounter when using std::map and std::set, and how can you safely avoid them?
- What kinds of predicates are safe to use with the STL, what kinds aren't, and why?
- What techniques are available for writing powerful generic template code that can change its own behavior based on the capabilities of the types it's given to work with?
- When and how should you optimize your code? Why can (and do) fancy optimizations get us into trouble? And how can some of these answers change if you're writing multithread-safe code?
- Does exception safety affect class design, or can it be retrofitted in as an afterthought?
- How can you avoid the Siamese Twin problem when combining inheritance-based libraries from different vendors?
- How can you safely use auto_ptr, and then use common design patterns to adapt it to avoid common pitfalls? Can you use auto_ptr as a class member? What must you know before you elect to use it that way?
- Plus one of the most frequently recurring questions about modern C++: When and how should you use namespaces, anyway?
A must-have for the serious programmer, More Exceptional C++ provides a thorough and pragmatic understanding of the language while showing you how to write exceptional code in C++.
020170434XB11092001
Web Resources
Click below for Web Resources related to this title:
Author Web Site
|
19 of 19 people found the following review helpful
By
This review is from: More Exceptional C++: 40 New Engineering Puzzles, Programming Problems, and Solutions (Paperback)
This book, like the earlier one by Sutter, was a reality check for me. Before I read it, I blissfully believed that I knew C++ really well. After all, I have taught it at the college and corporate level for ten years and programmed commercial code for three. I have also written and published material about the language in several journals. However, these forty exercises really opened my eyes and exercised my brain. They are excellent teaching material, showing you aspects of the language that are subtle, yet critical to know.One topic that I experienced firsthand is when an exception is thrown out of a constructor. This happened to me many years ago, and I spent hours trying to correct the code so that it finally did something similar to what I wanted. Had I been able to read items 17 and 18 of this book, I could have cut that to about twenty minutes and kept more of my hair. The problems are all typical of those encountered in the "unusual average" day in the life of a... Read more
15 of 16 people found the following review helpful
By
This review is from: More Exceptional C++: 40 New Engineering Puzzles, Programming Problems, and Solutions (Paperback)
Herb sutter's first book worth it's name : it was exceptional. That's why it was a challenge to write an equally good one as a second book. Of course, Herb put a lot of it's main ideas into his first book (like the "swap guts idiom" for example), but it leaves a big room for side subjects.Topics in this volume are well classified, maybe better than in the first volume. They adress important subjects for the C++ day to day programmer : standard library, performances, exception safety, resource management, etc... The "engineering puzzles" are in fact much less important than the "solution" described bellow. Because each of the solution is not mid game but a practicle piece of work that leads you to a better C++ quality code. Honestly, this book is not for beginner. It's much more valuable to read a primer book (stroustrup's C++ programing language, or better the Lipman's C++ primer) and then Meyer's effective C++. At least. You also should have a... Read more
5 of 5 people found the following review helpful
This review is from: More Exceptional C++: 40 New Engineering Puzzles, Programming Problems, and Solutions (Paperback)
More Exceptional C++ is every bit as good as the first offering from Sutter. Like the first, this is an advanced text, and a solid working knowledge of C++ is necessary to get the most out of this book.For those without experience with Sutter's previous book, this is divided into "Items" grouped together by broad subject area. Unless the the items make up a series such as Items 13-16, they can be read independently and in any order. This layout is helpful to the reader who doesn't have a lot of time to read a book from cover to cover. One can sit down and spend 30 minutes with an item and gain valuable insight into the specific subject matter Sutter deals with. I enjoy the author's writing style because he tends to be more conversational than lecturing. He interjects humor - albeit it geek humor - from time to time. The presentation makes learning advanced techniques, dare I say, fun rather than dry and cumbersome. It is also worth noting that being advanced... Read more |
› See all 12 customer reviews...
Online Sample Chapter
Generic Programming and the C++ Standard Library
Table of Contents
Foreword.
Preface.
Generic Programming and the C++ Standard Library.
Optimization and Performance.
Exception Safety Issues and Techniques.
Inheritance and Polymorphism.
Memory and Resource Management.
Free Functions and Macros.
Miscellaneous Topics.
Afterword.
Appendixes,
Appendix A. Optimizations That Aren't (In a Multithreaded World).
Appendix B. Test Results for Single- versus Multi-Thread-Safe String Implementations.
Bibliography.
Index. 020170434XT07022001
Preface
The Greek philosopher Socrates taught by asking his students questions--questions designed to guide them and help them draw conclusions from what they already knew, and to show them how the things they were learning related to each other and to their existing knowledge. This method has become so famous that we now call it the "Socratic method." From our point of view as students, Socrates' approach involves us, makes us think, and helps us relate and apply what we already know to new information.
This book takes a page from Socrates, as did its predecessor, Exceptional C++ Sutter00. It assumes you're involved in some aspect of writing production C++ software today, and uses a question-answer format to teach you how to make effective use of standard C++ and its standard library with a particular focus on sound software engineering in modern C++. Many of the problems are drawn directly from experiences I and others have encountered while working with production C++ code. The goal of the questions is to help you draw conclusions from things you already know as well as things you've just learned, and to show how they interrelate. The puzzles will show how to reason about C++ design and programming issues--some of them common issues, some not so common; some of them plain issues, some more esoteric; and a couple because, well, just because they're fun.
This book is about all aspects of C++. I don't mean to say that it touches on every detail of C++--that would require many more pages--but rather that it draws from the wide palette of the C++ language and library features to show how apparently unrelated items can be used together to synthesize novel solutions to common problems. It also shows how apparently unrelated parts of the palette interrelate on their own, even when you don't want them to, and what to do about it. You will find material here about templates and namespaces, exceptions and inheritance, solid class design and design patterns, generic programming and macro magic--and not just as randomized tidbits, but as cohesive Items showing the interrelationships among all of these parts of modern C++.
What's "More?"
More Exceptional C++ continues where Exceptional C++ left off. This book follows in the tradition of the first: It delivers new material, organized in bite-sized Items and grouped into themed sections. Readers of the first book will find some familiar section themes, now including new material, such as exception safety, generic programming, and memory management techniques. The two books overlap in structure and theme, not in content.
Where else does More Exceptional C++ differ? This book has a much stronger emphasis on generic programming and on using the C++ standard library effectively, including coverage of important techniques such as traits and predicates. Several Items provide in-depth looks at considerations to keep in mind when using the standard containers and algorithms; many of these considerations I've not seen covered elsewhere. There's a new section and two appendixes that focus on optimization in single- and multithreaded environments--issues that are now more than ever of practical consequence for development shops writing production code.
Versions of most Items originally appeared in Internet and magazine columns, particularly as Guru of the Week GotW issues #31 to 62, and as print columns and articles I've written for C/C++ Users Journal, Dr. Dobb's Journal, the former C++ Report, and other publications. The material in this book has been significantly revised, expanded, corrected, and updated since those initial versions, and this book (along with its de rigueur errata list available at www.gotw.ca) should be treated as the current and authoritative version of that original material.What I Assume You Know
I expect that you already know the basics of C++. If you don't, start with a good C++ introduction and overview. Good choices are a classic tome like Bjarne Stroustrup's The C++ Programming Language Stroustrup00, or Stan Lippman and Josee Lajoie's C++ Primer, Third Edition Lippman98. Next, be sure to pick up a style guide such as Scott Meyers' classic Effective C++ books Meyers96 Meyers97. I find the browser-based CD version Meyers99 convenient and useful.
How to Read This Book
Each Item in this book is presented as a puzzle or problem, with an introductory header that resembles the following:
Item #: The Topic of This PuzzleDifficulty: X
The topic tag and difficulty rating gives you a hint of what you're in for. Note that the difficulty rating is my subjective guess at how difficult I expect most people will find each problem, so you may well find that a "7" problem is easier for you than some "5" problem. Since writing Exceptional C++, I've regularly received e-mail saying that "Item #N is easier (or harder) than that!" It's common for different people to vote "easier!" and "harder!" for the same Item. Ratings are personal; any Item's actual difficulty for you really depends on your knowledge and experience and could be easier or harder for someone else. In most cases, though, you should find the rating to be a good rule-of-thumb guide to what to expect.
You might choose to read the whole book front to back; that's great, but you don't have to. You might decide to read all the Items in a section together because you're particularly interested in that section's topic; that's cool, too. Except where there are what I call a "miniseries" of related problems which you'll see designated as "Part 1," "Part 2," and so on, the Items are pretty independent, and you should feel free to jump around, following the many cross-references among the Items in the book, as well as some references to Exceptional C++. The only guidance I'll offer is that the miniseries are designed to be read consecutively as a group; other than that, the choice is yours.
Namespaces, Typename, References, and Other Conventions
I make quite a few recommendations in this book, and I won't give you guidelines that tell you to do something I don't already do myself. That includes what I do in my own example code throughout this book. I'll also bow to existing practice and modern style, even when it really makes no material difference.
On that note, a word about namespaces: In the code examples, if you see a using-directive at file scope in one example and at function scope in another example a few pages or Items later, there's no deeper reason than that's what felt right and aesthetically pleasing to me for that particular case; for the rationale, turn to Item 40. In the narrative text itself, I've chosen to qualify standard library names with std:: when I want to emphasize that it's the standard facility I'm talking about. Once that's established, I'll generally switch back to using the unqualified name.
When it comes to declaring template parameters, I sometimes come across people who think that writing class instead of typename is old-fashioned, even though there's no functional difference between the two and the standard itself uses class most everywhere. Purely for style, and to emphasize that this book is about today's modern C++, I've switched to using typename instead of class to declare template parameters. The only exception is one place in Item 33, where I quote directly from the standard; the standard says class, so I left it in there.
Unless I call something a "complete program," it's probably not. Remember that the code examples are usually just snippets or partial programs and aren't expected to compile in isolation. You'll usually have to provide some obvious scaffolding to make a complete program out of the snippet shown.
Finally, a word about URLs: On the Web, stuff moves. In particular, stuff I have no control over moves. That makes it a real pain to publish random Web URLs in a print book lest they become out of date before the book makes it to the printer's, never mind after it's been sitting on your desk for five years. When I reference other people's articles or Web sites in this book, I do it via a URL on my own Web site, www.gotw.ca, which I can control and which contains just a straight redirect to the real Web page. If you find that a link printed in this book no longer works, send me e-mail and tell me; I'll update that redirector to point to the new page's location (if I can find the page again) or to say that the page no longer exists (if I can't). Either way, this book's URLs will stay up-to-date despite the rigors of print media in an Internet world. Whew.
Herb SutterToronto, June 2001
020170434XP11292001
Downloadable Sample Chapter
Click below for Sample Chapter related to this title:
sutteritem1.pdf
sutteritem2.pdf
sutteritem3.pdf
sutteritem4.pdf
Index
#define, see macros
#pragma, 218
A AboutToModify, 91-114
Abrahams, David, 138, 140, 142
accumulate, 77-78
ACE, 104
Adams, Douglas, reference to, 22
Adapter pattern, 179-180
advance, example use, 10
Alexandrescu, Andrei, 25, 271
Append, 86-103, 263-269
array(s),
- auto_ptr and, see auto_ptr, arrays and
- vector and, see vector, C array and
- zero-length, 177-178
- vector and, see vector, C array and
assignment, templated, see template(s),
assignment
associative containers, see containers, associative
atomic integer operations, 107-114, 256-258, 269
auto_array, 178-179
auto_ptr, 135-148, 175-199
- arrays and, 175-182
- example use, 93
- members, issues regarding, 148, 182-187
- Pimpl Idiom and, see Pimpl Idiom, auto_ptr
and- swap and, 145
- vector versus, 181-182
- example use, 93
B basic_ios, 3-4
- rdbuf, 3-4
basic_ostream, 1-5, 20
basic_string, 20, 113, 195, 197
- copy-on-write and, 259-260
- see also copy-on-write
- reputation for slowness undeserved, 113, 248
Bester, Alfred, 55
bitset, 41, 43
bitvector, 43
bool,
- vector and, see vector, vector<bool>
buffer growth strategy, see String, growth strategy
C C array,
- vector and, see vector, C array and
C++ standard, the, 271
C++ Report, x
capacity, see vector, capacity
Cargill Widget Example, 141-149
char_traits, 5, 20, 195
<cheader> style, 237-238
ChoosePeg, 71-73, 76
ci_char_traits, alluded to, 5
cin, 2
Clamage, Steve, xii, 140
class,
- local, 207-209
- nested, 207-209
Cloneable, 19, 25-29
ColorMatch, 77-79
Colossal Cave adventure, reference to, 22
Combination, 76
concurrency, see multithreading
conservation of energy, 93
const_cast, 53, 55, 57-58
Constraints, 24-28
constructor,
- exceptions, see exception(s), constructor
- templated, see template(s), construction
- use to contain requirements-enforcing code, 22-23
- templated, see template(s), construction
container(s),
- associative, see set; map
- proxied, 41-45
- taking pointers and references into, 38
- vector<bool>, see vector, vector<bool>
- proxied, 41-45
conversion operators, see operator(s), conversion
copy, example use, 9, 87-88, 92-93
copy initialization, see initialization, direct versus copy
copy-on-write,
- see also String, Optimized::String
- basic_string and, 259-261
- historically popular, 261
- multithreading and, 104-114, 248, 253-269
- mutating or possibly-mutating operations and, 251
- optimizing allocation versus char copying, 259
- performance,111-114
- sample timings of, 263-269
- basic_string and, 259-261
CountColor, 72, 74
CountedPtr, 17-18
CountPlace, 71, 73
coupling, 151-153
cout, 2
COW, see copy-on-write
crashes, see intermittent crashes
CreateFrom, 194-199
Customer, 58
D Death, Dreaded Diamond of, 156
debugger, launching, see DieDieDie
declarations,
- forward, 226-228
- recursive, 201-206
Decrement, 18
deep copy, 108-109
- see also copy-on-write
delete,
- array form and auto_ptr, 176-182
deque, 1, 46-53
- deque<bool>, 45
destructor(s),
- use to contain requirements-enforcing code, 22-23
- pre-destructor, 131
- public versus virtual, 168-169
- pre-destructor, 131
direct initialization, see initialization, direct versus copy
DieDieDie, 171-172
Dining Philosophers Problem, allusion to, 252
distance, example use, 10
double delete, examples of, 184
Dr. Dobb's Journal, x
Dreaded Diamond of Death, 156
dynamic_cast, example use of, 160-162
E ECHO, 1-2
effects, see also side effects
encapsulation, 5-6, 20
EnsureUnique, 256
equal_to, example use, 77
erase, 8, 46
- iterators and, see iterator(s), validity
- remove and, 8
- see also vector, erase
- remove and, 8
expressions, order of evaluation of, see order of evaluation
exception(s),
- constructor, 115-126
- destructors and, 128, 130
- safety guarantees, see exception safety, guarantees
- thrown from base or member constructors, 116-126
- destructors and, 128, 130
- assignment and, 142, 146
- coupling and, 151-153
- design and, 147-148
- guarantees, 142
- Swap and, 142
- coupling and, 151-153
F find, 43
find_if, 12-17, 76
FindCustomer, 47
FlagNth, 7, 9-10, 15-17
FlagNthImpl, 16-17
flip, 42
food, see Dining Philosophers Problem
for_each, example use of, 72
forward declarations, see declarations, forward
forward iterators, see iterator(s), forward
FPDoubleInt, 202
French, gratuitous use of, x, 3, 77, 77, 245
friend,
- virtual function accessibility control using, 172-174
FuncPtr, 201-206
function try blocks, see try, function try blocks
functions, nested, see nested functions, simulating
G Gamma, Erich, 271
generate, example use of, 71, 76
GetError, 249, 251
GotW, see Guru of the Week
GreaterThan, 13
GreaterThanFive, 12
growth strategy for buffers, see String, growth
strategy
guarantees, exception safety, see exception safety, guarantees
Guru of the Week, x, 245, 271
H Haldeman, Joe, 55
Has-A, 149-153
HasClone, 24
header files,
- <cheader> style, 237-238
Helm, Richard, 271
Henney, Kevlin, xii, 150, 271
Hickin, John, 14
"holey array," 125
Holmes, Sherlock, reference to, 124
Hyslop, Jim, xii
I ifstream, example use, 3-4
IIITO, see Is-Implemented-In-Terms-Of
increment(ing), see operator(s), ++
Increment, 18
indigestion, compiler, 136
inheritance,
- delegation versus, 149-153
- multiple, 155-158
- simulating, 159-166
- Siamese Twin Problem, 162-166
- requiring, 19-32
- testing for, see also IsDerivedFrom
- unnecessary use of, 149-153
- virtual, 156
- multiple, 155-158
- direct versus copy, 224-226
- dangers of resource acquisition and, 123
inner_product, 77
instantiated_type, 32-36
instantiation of templates, see template(s), instantiation
interface classes, 158
intermittent crashes, 250
IntAtomic-, see atomic integer operations
integers,
- manipulating atomically, see atomic integer operations
- see also Liskov Substitutability Principle (LSP)
IsDerivedFrom, 25-29
Is-Implemented-In-Terms-Of, 149-153
IsOK, 118, 121
Is-Substitutable-For-A, 149-153
- see also Liskov Substitutability Principle (LSP)
istream_with_assign, 2
iterator
This book includes free shipping!
- Request an Instructor or Media review copy.
- Corporate, Academic, and Employee Purchases
- International Buying Options
Get access to thousands of books and training videos about technology, professional development and digital media from more than 40 leading publishers, including Addison-Wesley, Prentice Hall, Cisco Press, IBM Press, O'Reilly Media, Wrox, Apress, and many more. If you continue your subscription after your 30-day trial, you can receive 30% off a monthly subscription to the Safari Library for up to 12 months. That's a total savings of $199.

