暫缺《雙語版C++程序設(shè)計(Learn C++ through English and Chinese)》作者簡介
圖書目錄
Chapter One Introduction(緒論) 1.1 What is a computer program? (什么是計算機程序?) 1.2 Developing a computer program(開發(fā)計算機程序) 1.3 Learning C++(學(xué)習(xí) C++) 1.4 Web site for this book(本書的網(wǎng)站) 1.5 Brief history of C++(C++簡史) 1.6 ANSI/ISO C++ standard(ANSI/ISO C++標(biāo)準(zhǔn)) 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(數(shù)據(jù)類型) 2.6 Data type sizes(數(shù)據(jù)類型的大?。? 2.7 Operators(運算符) 2.8 Operator precedence(運算符的優(yōu)先級) 2.9 Type conversions and casts(類型轉(zhuǎn)換和強轉(zhuǎn)) 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(選擇與循環(huán)) 4.1 Selection(選擇) 4.2 Iteration(循環(huán)) Programming pitfalls Quick syntax reference Exercises Chapter Five Arrays and Structures(數(shù)組和結(jié)構(gòu)體) 5.1 Arrays(數(shù)組) 5.2 Structures(結(jié)構(gòu)體) 5.3 The typedef statement(typedef語句) 5.4 Arrays of structures(結(jié)構(gòu)體數(shù)組) 5.5 Enumerated data types(枚舉數(shù)據(jù)類型) Programming pitfalls Quick syntax reference Exercises Chapter Six Strings(字符串) 6.1 C-strings(C風(fēng)格字符串) 6.2 C-string input and output(C風(fēng)格字符串的輸入和輸出) 6.3 Accessing individual characters of a C-string(訪問C風(fēng)格字符串中的單個字符) 6.4 C-string functions(C風(fēng)格字符串函數(shù)) 6.5 C++ strings(C++字符串) 6.6 Arrays of strings(string類型的數(shù)組) 6.7 Character classification(字符分類) Programming Pitfalls Quick Syntax Reference Exercises Chapter Seven Functions(函數(shù)) Chapter Eight Objects and Classes(對象和類) Chapter Nine Pointers and Dynamic Memory(指針和動態(tài)內(nèi)存分配) Chapter Ten Operator Overloading(運算符重載) Chapter Eleven Inheritance(繼承) Chapter Twelve Polymorphism(多態(tài)性) 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