C++ Faqs: Frequently Asked Questions - Softcover

Cline, Marshall P.; Lomow, Greg A.

 
9780201589580: C++ Faqs: Frequently Asked Questions

Synopsis

The best quick-reference source for answers to everyday C++ programming problems, invaluable for all C++ programmers. Includes information on C++FAQ, one of the most-accessed Internet files, extensive examples, and cross-referencing. Question-and-answer format covers a wide range of topics.

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

About the Author

Marshall Cline is President of MT Systems Company, which develops object-oriented systems for large corporations. He has taught object-oriented programming design and analysis to thousands of professionals in both industrial and academic settings. He is the keeper of the official C++ FAQ for the Internet forum comp.lang.c++. He received the PhD in Electrical and Computer Engineering from Clarkson University.

Greg Lomow is a senior architect and developer with fifteen years of experience building applications and distributed systems for the banking and financial services industry as well as mentoring development teams on the effective use of object-oriented technology. He received the PhD in Computer Science from the University of Calgary.

0201589583AB04062001

From the Back Cover

Second Edition
now available! This book is inspired by the popularity of the electronic FAQ, originally prepared and disseminated by Marshall Cline and available on the Internet at comp.lang.c++. The direct question and answer format makes it easy for readers to quickly find the information they are looking for. This book contains four to five times the material of the electronic FAQ: new questions and answers have been added, existing questions have been extensively revised, comprehensive examples illustrate key points and provide practical guidelines for programmers, and thorough cross referencing makes this book a professional guidebook. The authors go beyond simply answering questions, they present a clear philosophy that promotes high quality C++ programming. The authors combine a lively, straightforward style with just enough humor to make the book accessible to the beginning C++ programmer, and a valuable reference for the experienced C++ developer. 0201589583B04062001

From the Inside Flap

FAQ 0.1

What is the purpose of this book?

The purpose of the book is to change the way you think.

Changing the way you think is much more challenging than learning the syntax of a programming language. For example, learning when and why you should use a particular construct is much harder than learning the syntax for that construct. Learning when not to use a particular construct is even harder.

This book gives specific advice and directions to help you properly use C++ for object-oriented programming. If you are new to object-oriented programming, our aim is to convert you to the object-oriented way of thinking. If you are a seasoned veteran, our aim is to have you question some of your ingrained practices and possibly adopt new approaches to using C++ --approaches that will scale better. FAQ 0.2

What is unique about the style and format of this book?

To achieve the book's goals, we used a novel style and format. Here are the key elements of that style and format. A question and answer format: This book contains answers to Frequently Asked Questions (or FAQs) about using C++ for object-oriented programming. These FAQs are the product of several years of teaching others to use C++ effectively, as well as an embarrassingly large number of hours corresponding with the international C++ user community via the Internet news group, comp.lang.c++. A focus on principles and concepts rather than syntax: Rather than focusing on the syntax and semantics of various C++ language features, this book shows how to combine features properly and why to combine them. A consistent programming and design philosophy: As with any programming language, there are numerous ways to use and combine the various features of C++. Some of these uses and combinations lead to comprehendable, maintainable, extensive, and reusable software; other uses and combinations only work in small examples and are, in reality, abuses of the language. These FAQs identify which uses and combinations are preferred and promote a consistent programming and design philosophy that has good scaling properties. Lots of programming examples: This book contains almost 200 programming examples, most of which are complete, runnable programs rather than program fragments. Readers are encouraged to dissect and execute the examples because this will enhance the learning experience. Extensive cross referencing: The FAQs in this book are extensively cross referenced to other FAQs, as well as to other C++ books. Since the topic of using C++ for object-oriented programming is too large to be completely covered by one book, we provide you with pointers into other books where complementary material can be found. Three books we selected for cross referencing: Stroustrup's The C++ Programming Language, Second Edition, an excellent description of the language; Ellis and Stroustrup's The Annotated C++ Reference Manual, an authoritative and comprehensive definition of the language; and Lippman's C++ Primer, Second Edition, an excellent introductory book. A lighthearted style: We want to change the way you think, so we have to debunk many common assumptions. This leads to the questioning of common practices and --to take the edge off-- humor. Another reason for the lighthearted style is that this book has roots in comp.lang.c++, where the communication style is direct and unforgiving, and where humor is used to calm people's passions and cajole people into seeing your point of view :-) FAQ 0.3

Where did these FAQs come from?

We made them up.

Surprisingly, most of the FAQs contained in this book are not questions that anyone ever asked us directly. Instead they come from our experience training developers in object-oriented technology and from corresponding with readers on comp.lang.c++. Topics that come up again and again, whether during training sessions or on comp.lang.c++, were coalesced into a series of questions. FAQ 0.4

Is every topic treated with equal emphasis?

No.

Some topics are covered in greater depth than other topics. We focus more energy on topics that historically have been most difficult for people to get right, and we almost completely ignore placement of semicolons and other issues that the compiler will tell you about. The more subtle the problem, the more we focus on it --especially practices that are accepted by the compiler and appear to function correctly, but which increase the overall cost of the software. FAQ 0.5

How should you use this book in combination with other books?

It depends on what you're trying to achieve.

This book is not intended to be a tutorial introduction to C++. Each example is meant to illustrate a single idea relevant to that FAQ. Many introductory aspects of the language, such as the syntax of a for loop, are assumed. If you want to cover the fundamentals of C++, we recommend using this book in conjunction with either The C++ Programming Language, Second Edition or C++ Primer, Second Edition. Our FAQs provide extensive cross references into both of these texts.

This book is not intended to be a reference manual for C++. It does not pretend to cover all aspects of the language in encyclopedic detail. If you want such a reference manual, we recommend using this book in conjunction with The Annotated C++ Reference Manual. Our FAQs provide extensive cross references into this text. FAQ 0.6

How is the book organized?

The FAQs are organized into more than 40 chapters, each of which is organized into ascending complexity.

The FAQs in each chapter all deal with a specific topic. Usually the questions near the beginning of a chapter deal with basic questions and fundamental concepts; later questions deal with advanced issues and complex topics.

The first third of the book deals with object-oriented aspects of C++ such as inheritance, dynamic binding, and polymorphism. The middle portion of the book deals with a variety of C++ facilities ranging from templates to exception handling to the proper management of pointers. The last portion of the book contains chapters that deal with environmental topics such as training, coding standards, and Smalltalk. FAQ 0.7

Why did we create the electronic FAQ?

To bring order to chaos.

First, the electronic FAQ presents the facts (pun intended) about C++ in a more concise and focused manner than the somewhat chaotic discussions on comp.lang.c++. Second, the number of developers switching to C++ is amazing, and the electronic FAQ answers many basic questions for these new users. Third, without a FAQ list, seasoned veterans would become irritated by answering the same questions over and over; the electronic FAQ encourages the veterans to act more like ambassadors. In the end, the electronic FAQ makes comp.lang.c++ a kinder, gentler news group, where people are less likely to be "flamed" (a technical term for posting a particularly scathing, blistering, and sarcastic response to something that is posted to an electronic bulletin board). FAQ 0.8

Why did we write this book?

To further spread the good news.

We decided to write this book for several reasons. First, Addison-Wesley expressed interest in such a project. Second, it would make the FAQs available to a wider audience since not everyone has access to Internet and comp.lang.c++. Third, a book permits the material to be presented in a more professional manner than can be easily done with the electronic FAQ. Fourth this project spurred us to expand the material vastly beyond what is provided by the electronic FAQ. In the end, after adding all the new FAQs, examples, and internal and external cross references, the book contains five times more material than the electronic FAQ. FAQ 0.9

Are Marshall's and Greg's motivations based on language bigotry?

No.

For the record, we are not now --nor have we ever been-- C++ language bigots. We love Smalltalk, Eiffel, C, Lisp, CLOS, Prolog, Simula, Ada, Modula, Pascal, perl, awk, sed, csh, ksh, REXX, COBOL, FORTRAN, RPG, etc. At the same time, we adopted the philosophy that since we're writing a book about C++, we might as well throw ourselves into the project even if it means that we look like C++ fanatics. It certainly has made for more exciting and provocative writing and, we hope, reading.

Our main goal is to get you to think about what you are doing and how you might improve on it. If we accomplish this, then we will be satisfied. FAQ 0.10

How can you communicate with us?

Email and FTP.

We'd love to hear from you. Our email address is clinefaq@aw. Send us your questions. Send us your comments.

You can acquire a free, machine-readable copy of the code sections in this book via FTP (ask your favorite network guru for help on how to access FTP with your software). The code sections will be available via FTP aw in the directory awputer.science/clinefaq. Use anonymous as your user ID, and use your email address as your password.

Enjoy! 0201589583P04062001

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

Other Popular Editions of the Same Title

9788177586442: C++ FAQs

Featured Edition

ISBN 10:  8177586440 ISBN 13:  9788177586442
Publisher: Pearson Education
Softcover