Dekorationsartikel gehören nicht zum Leistungsumfang.
Accelerated C++
Practical Programming by Example
Taschenbuch von Mike Hendrickson (u. a.)
Sprache: Englisch

50,00 €*

inkl. MwSt.

Versandkostenfrei per Post / DHL

Aktuell nicht verfügbar

Kategorien:
Beschreibung
Takes a practical approach to solving problems using C++. This book describes real problems and solutions, not just language features. It covers the language and standard library together.
Takes a practical approach to solving problems using C++. This book describes real problems and solutions, not just language features. It covers the language and standard library together.
Über den Autor

Andrew Koenig is a member of the Large-Scale Programming Research Department at AT&T's Shannon Laboratory, and the Project Editor of the C++ standards committee. A programmer for more than 30 years, 15 of them in C++, he has published more than 150 articles about C++, and speaks on the topic worldwide.

Barbara E. Moo is an independent consultant with 20 years' experience in the software field. During her nearly 15 years at AT&T, she worked on one of the first commercial products ever written in C++, managed the company's first C++ compiler project, and directed the development of AT&T's award-winning WorldNet Internet service business.



0
Inhaltsverzeichnis

Preface.


0. Getting Started.
Comments.
#include.
The Main Function.
Curly Braces.
Using the Standard Library for Output.
The Return Statement.
A Slightly Deeper Look.
Details.


1. Working with Strings.
Input.
Framing a Name.
Details.


2. Looping and Counting.
The Problem.
Overall Structure.
Writing an Unknown Number of Rows.
Writing a Row.
The Complete Framing Program.
Counting.
Details.


3. Working with Batches of Data.
Computing Student Grades.
Using Medians Instead of Averages.
Details.


4.Organizing Programs and Data.
Organizing computations.
Organizing Data.
Putting it All Together.
Partitioning the Grading Program.
The Revised Grading Program.
Details.


5. Using Sequential Containers and Analyzing Strings.
Separating Students into Categories.
Iterators.
Using Iterators Instead of Indices.
Rethinking Our Data Structure for Better Performance.
The List Type.
Taking Strings Apart.
Testing Our Split Function.
Putting Strings Together.
Details.


6. Using Library Algorithms.
Analyzing Strings.
Comparing Grading Schemes.
Classifying Students, Revisited.
Algorithms, Containers, and Iterators.
Details.


7. Using Associative Containers.
Containers that Support Efficient Look-Up.
Counting Words.
Generating a Cross-Reference Table.
Generating Sentences.
A Note on Performance.
Details.


8. Writing Generic Functions.
What is a Generic Function?
Data-Structure Independence.
Input and Output Iterators.
Using Iterators for Flexibility.
Details.


9. Defining New Types.
Student_info revisited.
Class Types.
Protection.
The Student_info class.
Constructors.
Using the Student_info class.
Details.


10. Managing Memory and Low-Level Data Structures.
Pointers and Arrays.
String Literals Revisited.
Initializing Arrays of Character Pointers.
Arguments to Main.
Reading and Writing Files.
Three Kinds of Memory Management.
Details.


11. Defining Abstract Data Types.
The Vec Class.
Implementing the Vec Class.
Copy Control.
Dynamic Vecs.
Flexible Memory Management.
Details.


12. Making Class Objects Act Like Values.
A Simple String Class.
Automatic Conversions.
Str Operations.
Some Conversions are Hazardous.
Conversion Operators.
Conversions and Memory Management.
Details.


13. Using Inheritance and Dynamic Binding.
Inheritance.
Polymorphism and Virtual Functions.
Using Inheritance to Solve Our Problem.
A Simple Handle Class.
Using the Handle Class.
Subtleties.
Details.


14. Managing Memory (Almost) Automatically.
Handles that Copy their Objects.
Reference-Counted Handles.
Handles that Let you Decide When to Share Data.
An Improvement on Controllable Handles.
Details.


15. Revisiting Character Pictures.
Design.
Implementation.
Details.


16. Where Do We Go From Here?
Use the Abstractions You Have.
Learn More.


Appendix A. Language Details.
Declarations.
Types.
Expressions.
Statements.


Appendix B. Library Summary.
Input-Output.
Containers and Iterators.
Algorithms.


Index. [...]XT[...]
Details
Erscheinungsjahr: 2000
Fachbereich: Programmiersprachen
Genre: Informatik
Rubrik: Naturwissenschaften & Technik
Medium: Taschenbuch
Seiten: 352
ISBN-13: 9780201703535
ISBN-10: 020170353X
UPC: 785342703535
EAN: 0785342703535
Sprache: Englisch
Einband: Kartoniert / Broschiert
Autor: Hendrickson, Mike
Koenig, Andrew
Moo, Barbara
Hersteller: Pearson Education
Maße: 235 x 187 x 22 mm
Von/Mit: Mike Hendrickson (u. a.)
Erscheinungsdatum: 18.09.2000
Gewicht: 0,589 kg
preigu-id: 105931116
Über den Autor

Andrew Koenig is a member of the Large-Scale Programming Research Department at AT&T's Shannon Laboratory, and the Project Editor of the C++ standards committee. A programmer for more than 30 years, 15 of them in C++, he has published more than 150 articles about C++, and speaks on the topic worldwide.

Barbara E. Moo is an independent consultant with 20 years' experience in the software field. During her nearly 15 years at AT&T, she worked on one of the first commercial products ever written in C++, managed the company's first C++ compiler project, and directed the development of AT&T's award-winning WorldNet Internet service business.



0
Inhaltsverzeichnis

Preface.


0. Getting Started.
Comments.
#include.
The Main Function.
Curly Braces.
Using the Standard Library for Output.
The Return Statement.
A Slightly Deeper Look.
Details.


1. Working with Strings.
Input.
Framing a Name.
Details.


2. Looping and Counting.
The Problem.
Overall Structure.
Writing an Unknown Number of Rows.
Writing a Row.
The Complete Framing Program.
Counting.
Details.


3. Working with Batches of Data.
Computing Student Grades.
Using Medians Instead of Averages.
Details.


4.Organizing Programs and Data.
Organizing computations.
Organizing Data.
Putting it All Together.
Partitioning the Grading Program.
The Revised Grading Program.
Details.


5. Using Sequential Containers and Analyzing Strings.
Separating Students into Categories.
Iterators.
Using Iterators Instead of Indices.
Rethinking Our Data Structure for Better Performance.
The List Type.
Taking Strings Apart.
Testing Our Split Function.
Putting Strings Together.
Details.


6. Using Library Algorithms.
Analyzing Strings.
Comparing Grading Schemes.
Classifying Students, Revisited.
Algorithms, Containers, and Iterators.
Details.


7. Using Associative Containers.
Containers that Support Efficient Look-Up.
Counting Words.
Generating a Cross-Reference Table.
Generating Sentences.
A Note on Performance.
Details.


8. Writing Generic Functions.
What is a Generic Function?
Data-Structure Independence.
Input and Output Iterators.
Using Iterators for Flexibility.
Details.


9. Defining New Types.
Student_info revisited.
Class Types.
Protection.
The Student_info class.
Constructors.
Using the Student_info class.
Details.


10. Managing Memory and Low-Level Data Structures.
Pointers and Arrays.
String Literals Revisited.
Initializing Arrays of Character Pointers.
Arguments to Main.
Reading and Writing Files.
Three Kinds of Memory Management.
Details.


11. Defining Abstract Data Types.
The Vec Class.
Implementing the Vec Class.
Copy Control.
Dynamic Vecs.
Flexible Memory Management.
Details.


12. Making Class Objects Act Like Values.
A Simple String Class.
Automatic Conversions.
Str Operations.
Some Conversions are Hazardous.
Conversion Operators.
Conversions and Memory Management.
Details.


13. Using Inheritance and Dynamic Binding.
Inheritance.
Polymorphism and Virtual Functions.
Using Inheritance to Solve Our Problem.
A Simple Handle Class.
Using the Handle Class.
Subtleties.
Details.


14. Managing Memory (Almost) Automatically.
Handles that Copy their Objects.
Reference-Counted Handles.
Handles that Let you Decide When to Share Data.
An Improvement on Controllable Handles.
Details.


15. Revisiting Character Pictures.
Design.
Implementation.
Details.


16. Where Do We Go From Here?
Use the Abstractions You Have.
Learn More.


Appendix A. Language Details.
Declarations.
Types.
Expressions.
Statements.


Appendix B. Library Summary.
Input-Output.
Containers and Iterators.
Algorithms.


Index. [...]XT[...]
Details
Erscheinungsjahr: 2000
Fachbereich: Programmiersprachen
Genre: Informatik
Rubrik: Naturwissenschaften & Technik
Medium: Taschenbuch
Seiten: 352
ISBN-13: 9780201703535
ISBN-10: 020170353X
UPC: 785342703535
EAN: 0785342703535
Sprache: Englisch
Einband: Kartoniert / Broschiert
Autor: Hendrickson, Mike
Koenig, Andrew
Moo, Barbara
Hersteller: Pearson Education
Maße: 235 x 187 x 22 mm
Von/Mit: Mike Hendrickson (u. a.)
Erscheinungsdatum: 18.09.2000
Gewicht: 0,589 kg
preigu-id: 105931116
Warnhinweis

Ähnliche Produkte

Ähnliche Produkte

Taschenbuch