HAPPY BOOKSGIVING
Use code BOOKSGIVING during checkout to save 40%-55% on books and eBooks. Shop now.
Register your product to gain access to bonus material or receive a coupon.
Provides a faster path to true C++ mastery than is available from books that avoid the Standard Template Library.
Gives students a powerful, high-value programming tool they can utilize for years to come.
Teaches beginners more effectively, overcoming typical obstacles more rapidly, and retaining more of what they learn.
Lets students ask questions of the author and take advantage of his additional online learning resources.
Can run all the programs presented in the book as well as any other C++/STL program students choose to write.
Simply the best way for beginners to learn standard C++.
C++: A Dialog is the easiest, most effective way for beginners to learn C++ programming.
Steve Heller teaches C++ from scratch, through a one-on-one conversation with an intelligent beginner who asks the questions you'd ask. Heller's unique dialog format is brilliantly designed to clarify the concepts you might otherwise find confusing, so you can quickly learn today's most powerful and valuable C++ development techniques.
Heller takes you from the absolute fundamentals through the construction of a complete inventory application, including a simple but effective user interface. Along the way, you won't just learn C++ features: you'll see exactly how professional programmers bring them together and put them to work.
Unlike many beginners' books, C++: A Dialog uses industry-standard C++ and the latest standard librariesgiving you skills you can use with any standard C++ toolset, in any programming environment. You even get all the example code and a standard C++ compiler on CD-ROM so you can write and compile your own standard C++ programs on any 32-bit Microsoft Windows platform.
CD-ROM INCLUDEDThe accompanying CD-ROM contains the commercial-grade Borland C++ 5.5 compiler and its associated libraries, which supports the latest ANSI/ISO C++ standards, including the STL (Standard Template Library) framework and C++ templates.
Introduction to Programming in C++
Click here for a sample chapter for this book: 0130094021.pdf
List of Figures.
Foreword.
Preface.
Acknowledgments.
Letter from a Novice.
1. Introduction to Programming.
Definitions. Baby Steps.
Definitions. Objectives of This Chapter. Inside the Box. The Binary Number System. Exercises. Using the 16-bit Register Names. Review. Conclusion. Answers to Exercises.
Definitions. Objectives of This Chapter. Rapid and Accurate Calculation. The Compiler. How the CPU Stores and Manipulates Data in Memory. The Layout of Data in Memory. Exercises, First Set. The char and string Types. using, namespace, and std. int main(). Exercises, Second Set. Input and Output. Changing the Course of Execution. The while Loop. Exercises, Third Set. Our First Slightly Realistic Program. Exercises, Fourth Set. Review. Conclusion. Answers to Exercises.
Objectives of This Chapter. Algorithmic Thinking. Handling Any Number of Prizes. Index Variables. The Selection Sort. Program Failure. Review. Exercises. Conclusion. Answers to Exercises.
Definitions. Objectives of This Chapter. Modules vs. Functions. Using a Function. Software Is a Virtual Computer. Scope of Variables. The Disadvantages of Global Variables. More on Using the Stack. Review. Exercises. Conclusion. Answers to Exercises.
Definitions. Objectives of This Chapter. User-defined Data Types. The StockItem class. More Definitions. Concrete Data Types. The class Scope. More about the StockItem class Interface. Working around the Standard Library. Reference Arguments. Checking Inventory for a Misplaced Item. Review. Exercises. Conclusion. Answers to Exercises.
Objectives of This Chapter. C String Literals vs. strings. Dynamic Memory Allocation via new and delete. Constructing a string from a C String. Assignment Operator Issues. Solving the Assignment Operator Problem. The const Modifier for Reference Arguments. Calling operator=. Review. Exercises. Conclusion.
Objectives of This Chapter. The string Copy Constructor. More about the private Access Specifier. First Review. Adding Further Facilities to our string class. Initialization vs. Assignment. Second Review. Exercises. Conclusion. Answers to Exercises.
Definitions. Objectives of This Chapter. Taking Inventory. Adding ReorderItems to the Inventory class. Adding Expiration Dates. The protected Access Specifier. static Member Functions. The stream classes. More about stringstream. Review. Exercises. Conclusion.
Definitions. Objectives of This Chapter. Introduction to Polymorphism. Exercises, First Set. Polymorphic Objects. More Definitions. Why We Need Polymorphic Objects. Implementing Safe Polymorphism. Reimplementing the Standard Member Functions for the New Version of StockItem. voiding an Infinite Regress During Construction. Reference Counting. Sharing a Worker Object. Why We Need m_Count in StockItem. Review. Exercises, Second Set. Conclusion.
Definitions. Objectives of This Chapter. Data Items for the Home Inventory Project. The Manager/Worker Idiom Again. Hiding Unnecessary Information from the class User. Saving the Number of the Elements in the File. Creating a Data File Programmatically. Adding the Ability to Edit a Record. The New Member Functions of HomeItemMusic. Review. Exercises. Conclusion.
Definitions. Objectives of This Chapter. Extending the Functionality of strings. How to Implement Our New string Functionality. The Include Guard. Lessons of the xstring class Implementation. Case-Insensitive Searching. Searching for an Item by a Substring. Putting It All Together. How Software Development Really Works. Review. Conclusion.
Definitions. Objectives of This Chapter. The Final Version of the Home Inventory Program. Using a namespace to Group Utility Functions. The Functions of the HomeUtility namespace. Checking the Inventory. Finishing up the HomeItem class. Are We Having Fun Yet? Review. Exercises. Conclusion.
Wrapping Up.
Special Characters. A 995. B 998. C 1000. D 1006. E 1009. F 1010. G 1013. H 1013. I 1014. K 1017. L 1017. M 1019. N 1021. O 1024. P 1026. R 1029. S 1032. T 1037. U 1038. V 1040. W 1041. Y 1041. Z 1041.
Is this book for you? If you're a programmer in a language other than C++ and you want to upgrade your skills, then you shouldn't have much difficulty figuring that out for yourself by reading a few pages. But what if you have no previous programming experience? In that case, here's a little quiz that may help you decide:
If you've answered yes to these questions and follow through with the effort required, then you will get a lot out of this book.
The common wisdom states that programming is a difficult subject that should be reserved for a small number of specialists. One of the main reasons that I have written this book is that I believe this attitude is wrong; it is possible, and even desirable, for you to learn how programs work and how to write them. Those who don't understand how computers perform their seemingly magical feats are at an ever-increasing disadvantage in a society ever more dependent on these extraordinary machines.
Regardless of the topic, I can see no valid reason for a book to be stuffy and dry, and I've done everything possible to make this one approachable. However, don't let the casual tone fool you into thinking that the subject is easy; there is no royal road to programming, any more than there is to geometry. Especially if you have no prior experience in programming, C++ will stretch your mind more than virtually any other area of study.
Assuming that you want to learn C++, why should you read this book rather than any of dozens of other introductory C++ books? One difference between this book and other introductory books is that many of them still don't use the C++ standard library, a very important part of the C++ language definition. We'll make use of some of the features of the standard library in this book, to get you started on learning this large and complex part of the C++ language.
However, we certainly won't cover it in its entirety; that would require much more room that we can devote to it here. In fact, many books can be and have been written about the standard library alone, although I don't know of any that would be suitable for novices to programming.
But there is one ingredient that makes this book unique: the participation of a real, live person who didn't already know the material before reading it, namely Susan Heller, my wife. Her main contribution has been to read every line of the book, starting with the first draft, and to ask questions via e-mail about anything she didn't understand. I answered her questions, also by e-mail, until both of us were satisfied that she understood the material in question and that the text was clear. After the text was otherwise complete, I extracted appropriate parts of the e-mail exchanges, edited them for spelling, punctuation, and so forth, and included them in the text where they will be most useful to the reader.
For this latest version of the book, we have discussed the changes caused by the adoption of the standard library. As a result of our discussions, I have added to and modified the existing e-mail conversations as appropriate so that they make sense in the context of those changes. However, Susan still has the final say on what goes in her side of these conversations, so they are still authentic conversations.
Of course, these exchanges do take up room in the book that might otherwise be filled with more information about C++ and programming. Therefore, if you want to get the absolute maximum of new information per page, you might want to select another book such as Bjarne Stroustrup's excellent The C++ Programming Language (ISBN 0-201-88954-4), or perhaps Accelerated C++, by Andrew Koenig and Barbara Moo (ISBN 0-201-70353-X). However, the vast majority of comments I've received from readers of my other books for beginners have indicated that they found my approach very helpful, and I suspect that most readers of this book will feel the same.
Susan has written an account of part of her involvement in this project, which immediately follows this Preface. I recommend that you read that account before continuing with the technical material following it, as it explains how and why she has contributed to making your task easier and more enjoyable.
Speaking of Susan, here is a bit of correspondence between us on the topic of how one should read this book, which occurred after her first reading of what is now Chapter 2, "Hardware Fundamentals", and Chapter 3, "Basics of Programming".
Susan: Let me say this: to feel like I would truly understand it, I would really need to study this about two more times. Now, I could do this, but I am not sure you would want me to do so. I think reading a chapter once is enough for most people.
Steve: As a matter of fact, I would expect the reader of my book to read and study these chapters several times if necessary; for someone completely new to programming, I imagine that it would be necessary. Programming is one of the most complex human disciplines, although it doesn't take the mathematical skills of a subject such as nuclear physics, for example. I've tried to make my explanations as simple as possible, but there's no way to learn programming (or any other complex subject) without investing a significant amount of work and thought.
After she had gone through the text a number of times and had learned a lot from the process, we continued this discussion as follows:
Susan: Well then, maybe this should be pointed out in a Preface or something. Of course, it would eventually be obvious to the reader as it was to me, but it took me a while to come to that conclusion. The advantage of knowing this in advance is that maybe I would not be so discouraged that I was not brilliant after one read of a chapter.
Steve: I will indeed mention in the preface that the reader shouldn't be fooled by the casual tone into thinking that this is going to be a walk in the park. In any event, please don't be discouraged. It seems to me that you have absorbed a fair amount of very technical material with no previous background; that's something to be proud of!
We'll be hearing from Susan many more times in the course of the book. She will be checking in frequently in the form of extracts from the e-mail discussion we engaged in during the testing and revising process. I hope you will find her comments and my replies add a personal touch to your study of this technical material.
While we're on the topic of your studying, this would be a good time to tell you how to get updates and help with any errors you might find in the book or with any other questions you might have. The best way is to visit my WWW site, steveheller.com
. My e-mail address is steve@steveheller.com
In the event that you enjoy this book and would like to tell others about it, you might want to write an online review on Amazon.com, which you can do by visiting my home page and following the links to the "customer reviews" on Amazon.
Now that those preliminaries are out of the way, let's proceed. The next voice you will hear is that of Susan, my test reader. I hope you get as much out of her participation in this book as I have.