暂缺《双语版C++程序设计(Learn C++ through English and Chinese)》作者简介
图书目录
Chapter One Introduction(绪论) 1.1 What is a computer program? (什么是计算机程序?) 1.2 Developing a computer program(开发计算机程序) 1.3 Learning C++(学习 C++) 1.4 Web site for this book(本书的网站) 1.5 Brief history of C++(C++简史) 1.6 ANSI/ISO C++ standard(ANSI/ISO C++标准) Chapter Two Beginning to Program in C++(C++编程入门) 2.1 Constants(常量) 2.2 Variables(变量) 2.3 Simple output to the screen(简单的屏幕输出) 2.4 Comments(注释) 2.5 Data types(数据类型) 2.6 Data type sizes(数据类型的大小) 2.7 Operators(运算符) 2.8 Operator precedence(运算符的优先级) 2.9 Type conversions and casts(类型转换和强转) Programming pitfalls Quick syntax reference Exercises Chapter Three Keyboard Input and Screen Output(键盘输入和屏幕输出) 3.1 Simple keyboard input(简单的键盘输入) 3.2 Manipulators(流操纵符) 3.3 Single-character input and output(单个字符的输入和输出) Programming pitfalls Quick syntax reference Exercises Chapter Four Selection and Iteration(选择与循环) 4.1 Selection(选择) 4.2 Iteration(循环) Programming pitfalls Quick syntax reference Exercises Chapter Five Arrays and Structures(数组和结构体) 5.1 Arrays(数组) 5.2 Structures(结构体) 5.3 The typedef statement(typedef语句) 5.4 Arrays of structures(结构体数组) 5.5 Enumerated data types(枚举数据类型) Programming pitfalls Quick syntax reference Exercises Chapter Six Strings(字符串) 6.1 C-strings(C风格字符串) 6.2 C-string input and output(C风格字符串的输入和输出) 6.3 Accessing individual characters of a C-string(访问C风格字符串中的单个字符) 6.4 C-string functions(C风格字符串函数) 6.5 C++ strings(C++字符串) 6.6 Arrays of strings(string类型的数组) 6.7 Character classification(字符分类) Programming Pitfalls Quick Syntax Reference Exercises Chapter Seven Functions(函数) Chapter Eight Objects and Classes(对象和类) Chapter Nine Pointers and Dynamic Memory(指针和动态内存分配) Chapter Ten Operator Overloading(运算符重载) Chapter Eleven Inheritance(继承) Chapter Twelve Polymorphism(多态性) Chapter Thirteen Templates(模板) Chapter Fourteen Files and Streams(文件和流) Appendix A List of C++ Keywords Appendix B Precedence and Associativity of C++ Operators Appendix C ASCII Character Codes Appendix D Fundamental C++ Built-in Data Types Appendix E Common iomanip Manipulators Appendix F Escape Sequences Appendix G The C++ Preprocessor