C++ the Core Language : A Foundation for C Programmers by Gregory Satir and Doug Brown (1995, Trade Paperback)

Bargain Book Stores (1131884)
99.2% positive Feedback
Price:
US $38.69
Approximately£28.42
+ $10.50 postage
Estimated delivery Mon, 30 Jun - Mon, 7 Jul
Returns:
No returns, but backed by the eBay Money Back Guarantee.
Condition:
New
Format: Paperback or Softback. Publication Date: 10/29/1995. Your source for quality books at reduced prices. Condition Guide. Item Availability.

About this product

Product Identifiers

PublisherO'reilly Media, Incorporated
ISBN-10156592116X
ISBN-139781565921160
eBay Product ID (ePID)11038379156

Product Key Features

Number of Pages230 Pages
LanguageEnglish
Publication NameC++ the Core Language : a Foundation for C Programmers
Publication Year1995
SubjectProgramming Languages / C++, Programming / General, Programming / Object Oriented
TypeTextbook
AuthorGregory Satir, Doug Brown
Subject AreaComputers
FormatTrade Paperback

Dimensions

Item Height0.5 in
Item Weight15 Oz
Item Length9.1 in
Item Width7.1 in

Additional Product Features

Intended AudienceScholarly & Professional
LCCN96-140845
Dewey Edition21
IllustratedYes
Dewey Decimal005.1/33
Table Of ContentPrefaceChapter 1. Object-Oriented Programming with ClassesObject-Oriented ProgrammingClassesChapter 2. C++ Without ClassesThree to StartFunction ChangesStricter TypingDynamic Initialization of GlobalsSome Final ListsChapter 3. Abstraction with Member FunctionsThe AbstractionUsing a structUsing a struct with Interface FunctionsUsing a Class with Member FunctionsChapter 4. Encapsulation with Access SpecifiersAccess SpecifiersA Member Can Have Any Access LevelUnlimited Access SpecifiersPrivate Does Not Mean InvisibleFriend ClassesChapter 5. Hierarchy with Composition and DerivationCompositionDerivationChainingChapter 6. Better Abstraction with Constructors and DestructorsThe Default ConstructorThe DestructorBuilt-in TypesHierarchy and ChainingImplicit Default Constructors and DestructorsBeyond ChainingExplicit InvocationFlow of ControlTime of InvocationChapter 7. Better Abstraction with new and deleteDynamic ObjectsDynamic ArraysMixing Allocatorsrealloc()Out of MemoryChapter 8. ReferencesParameter Versus ArgumentPassing by Value in C and C++Passing by Reference in C++Reference Versus PointerReturning by Reference in C++Overloading: Reference Versus ValueBinding ProblemsChapter 9. Better Abstraction with Other Special Member FunctionsAssignment OperatorCopy ConstructorPrinting an ObjectSummaryChapter 10. An Example ClassUsing an intUsing a Static ArrayUsing a Dynamic ArrayUsing a Reference-Counted StringCopy Constructor QuizSummary TableChapter 11. Better Hierarchy with TemplatesDefining a TemplateUsing a Template to Define an ObjectCareful with That Expansion, EugeneModifying Container Class ElementsChapter 12. Polymorphism with Virtual FunctionsPolymorphism in CVirtual FunctionsPolymorphism in C++More About Virtual FunctionsChapter 13. More About PolymorphismAbstract ClassesDerivation DecisionsVirtual DecisionsCalling Virtual Functions from Constructors and DestructorsUnder the HoodPitfallsChapter 14. Implementing an Object-Oriented DesignImplementation TableExamplesIs-A, Has-ADefensive ImplementationChapter 15. An Example ProgramThe String ClassThe Rule, CwRule, and HwRule ClassesThe Scanner ClassUsing the ProgramExample CodeChapter 16. What to Study NextconstinlineConstructors with ParametersMember Initialization ListsEfficient Copy ConstructorSpecial Member FunctionsAppendix A. C++ OperatorsAppendix B. One Problem with Returning by ValueGlossaryIndex
SynopsisA primer for C programmers transitioning to C++ and designed to get users up to speed quickly, this book tells users just what they need to learn first. Covering a subset of the features of C++, the user can actually use this subset to get familiar with the basics of the language. The book includes sidebars that give overviews of advanced features not covered., C++ is an object-oriented enhancement of the C programming language and is becoming the language of choice for serious software development.C++ has crossed the Single Book Complexity Barrier. The individual features are not all that complex, but when put together in a program they interact in highly non-intuitive ways. Many books discuss each of the features separately, giving readers the illusion that they understand the language. But when they try to program, they're in for a painful surprise (even people who already know C). C++: The Core Language is for C programmers transitioning to C++. It's designed to get readers up to speed quickly by covering an essential subset of the language.The subset consists of features without which it's just not C++, and a handful of others that make it a reasonably useful language. You can actually use this subset (using any compiler) to get familiar with the basics of the language.Once you really understand that much, it's time to do some programming and learn more from other books. After reading this book, you'll be far better equipped to get something useful out of a reference manual, a graphical user interface programming book, and maybe a book on the specific libraries you'll be using. (Take a look at our companion book, Practical C++ Programming .) C++: The Core Language includes sidebars that give overviews of all the advanced features not covered, so that readers know they exist and how they fit in. It covers features common to all C++ compilers, including those on UNIX, Windows NT, Windows, DOS, and Macintosh. Comparison : C++: The Core Language vs. Practical C++ Programming O'Reilly's policy is not to publish two books on the same topic for the same audience. We'd rather spend twice the time on making one book the industry's best. So why do we have two C++ tutorials? Which one should you get?The answer is they're very different. Steve Oualline, author of the successful book Practical C Programming , came to us with the idea of doing a C++ edition. Thus was born Practical C++ Programming . It's a comprehensive tutorial to C++, starting from the ground up. It also covers the programming process, style, and other important real-world issues. By providing exercises and problems with answers, the book helps you make sure you understand before you move on.While that book was under development, we received the proposal for C++: The Core Language . Its innovative approach is to cover only a subset of the language -- the part that's most important to learn first -- and to assume readers already know C. The idea is that C++ is just too complicated to learn all at once. So, you learn the basics solidly from this short book, which prepares you to understand some of the 200+ other C++ books and to start programming.These two books are based on different philosophies and are for different audiences. But there is one way in which they work together. If you are a C programmer, we recommend you start with C++: The Core Language , then read about advanced topics and real-world problems in Practical C++ Programming ., C++ is an object-oriented enhancement of the C programming language and is becoming the language of choice for serious software development.C++ has crossed the Single Book Complexity Barrier. The individual features are not all that complex, but when put together in a program they interact in highly non-intuitive ways. Many books discuss each of the features separately, giving readers the illusion that they understand the language. But when they try to program, they're in for a painful surprise (even people who already know C). C++: The Core Language is for C programmers transitioning to C++. It's designed to get readers up to speed quickly by covering an essential subset of the language.The subset consists of features without which it's just not C++, and a handful of others that make it a reasonably useful language. You can actually use this subset (using any compiler) to get familiar with the basics of the language.Once you really understand that much, it's time to do some programming and learn more from other books. After reading this book, you'll be far better equipped to get something useful out of a reference manual, a graphical user interface programming book, and maybe a book on the specific libraries you'll be using. (Take a look at our companion book, Practical C++ Programming .) C++: The Core Language includes sidebars that give overviews of all the advanced features not covered, so that readers know they exist and how they fit in. It covers features common to all C++ compilers, including those on UNIX, Windows NT, Windows, DOS, and Macintosh. Comparison : C++: The Core Language vs.Practical C++ Programming O'Reilly's policy is not to publish two books on the same topic for the same audience. We'd rather spend twice the time on making one book the industry's best. So why do we have two C++ tutorials? Which one should you get?The answer is they're very different. Steve Oualline, author of the successful book Practical C Programming , came to us with the idea of doing a C++ edition. Thus was born Practical C++ Programming . It's a comprehensive tutorial to C++, starting from the ground up. It also covers the programming process, style, and other important real-world issues. By providing exercises and problems with answers, the book helps you make sure you understand before you move on.While that book was under development, we received the proposal for C++: The Core Language . Its innovative approach is to cover only a subset of the language -- the part that's most important to learn first -- and to assume readers already know C. The idea is that C++ is just too complicated to learn all at once. So, you learn the basics solidly from this short book, which prepares you to understand some of the 200+ other C++ books and to start programming.These two books are based on different philosophies and are for different audiences. But there is one way in which they work together. If you are a C programmer, we recommend you start with C++: The Core Language , then read about advanced topics and real-world problems in Practical C++ Programming ., C++ is an object-oriented enhancement of the C programming language and is becoming the language of choice for serious software development. C++ has crossed the Single Book Complexity Barrier. The individual features are not all that complex, but when put together in a program they interact in highly non-intuitive ways. Many books discuss each of the features separately, giving readers the illusion that they understand the language. But when they try to program, they're in for a painful surprise (even people who already know C). C++: The Core Language is for C programmers transitioning to C++. It's designed to get readers up to speed quickly by covering an essential subset of the language. The subset consists of features without which it's just not C++, and a handful of others that make it a reasonably useful language. You can actually use this subset (using any compiler) to get familiar with the basics of the language. Once you really understand that much, it's time to do some programming and learn more from other books. After reading this book, you'll be far better equipped to get something useful out of a reference manual, a graphical user interface programming book, and maybe a book on the specific libraries you'll be using. (Take a look at our companion book, Practical C++ Programming .) C++: The Core Language includes sidebars that give overviews of all the advanced features not covered, so that readers know they exist and how they fit in. It covers features common to all C++ compilers, including those on UNIX, Windows NT, Windows, DOS, and Macintosh. Comparison C++: The Core Language vs. Practical C++ Programming O'Reilly's policy is not to publish two books on the same topic for the same audience. We'd rather spend twice the time on making one book the industry's best. So why do we have two C++ tutorials? Which one should you get? The answer is they're very different. Steve Oualline, author of the successful book Practical C Programming , came to us with the idea of doing a C++ edition. Thus was born Practical C++ Programming . It's a comprehensive tutorial to C++, starting from the ground up. It also covers the programming process, style, and other important real-world issues. By providing exercises and problems with answers, the book helps you make sure you understand before you move on. While that book was under development, we received the proposal for C++: The Core Language . Its innovative approach is to cover only a subset of the language -- the part that's most important to learn first -- and to assume readers already know C. The idea is that C++ is just too complicated to learn all at once. So, you learn the basics solidly from this short book, which prepares you to understand some of the 200+ other C++ books and to start programming. These two books are based on different philosophies and are for different audiences. But there is one way in which they work together. If you are a C programmer, we recommend you start with C++: The Core Language , then read about advanced topics and real-world problems in Practical C++ Programming .
LC Classification NumberQA76.73.C153S278 199

All listings for this product

Buy it now
Any condition
New
Pre-owned
No ratings or reviews yet
Be the first to write a review