注冊(cè) | 登錄讀書(shū)好,好讀書(shū),讀好書(shū)!
讀書(shū)網(wǎng)-DuShu.com
當(dāng)前位置: 首頁(yè)出版圖書(shū)科學(xué)技術(shù)計(jì)算機(jī)/網(wǎng)絡(luò)軟件與程序設(shè)計(jì)C/C++及其相關(guān)雙語(yǔ)版C++程序設(shè)計(jì)(Learn C++ through English and Chinese)

雙語(yǔ)版C++程序設(shè)計(jì)(Learn C++ through English and Chinese)

雙語(yǔ)版C++程序設(shè)計(jì)(Learn C++ through English and Chinese)

定 價(jià):¥45.00

作 者: (愛(ài)爾蘭)凱利,蘇小紅 著
出版社: 電子工業(yè)出版社
叢編項(xiàng): 國(guó)外計(jì)算機(jī)科學(xué)教材系列
標(biāo) 簽: VC++

購(gòu)買(mǎi)這本書(shū)可以去


ISBN: 9787121107979 出版時(shí)間: 2010-06-01 包裝: 平裝
開(kāi)本: 16開(kāi) 頁(yè)數(shù): 388 字?jǐn)?shù):  

內(nèi)容簡(jiǎn)介

  《雙語(yǔ)版C++程序設(shè)計(jì)》由在計(jì)算機(jī)程序設(shè)計(jì)方面有著豐富教學(xué)和實(shí)踐經(jīng)驗(yàn)的中外作者合作編寫(xiě)。共分14章內(nèi)容,由淺入深全面介紹C++程序設(shè)計(jì)方法?!峨p語(yǔ)版C++程序設(shè)計(jì)》通俗易懂,例子貼近生活,尤其強(qiáng)調(diào)讀者的親自參與意識(shí)。所有實(shí)例經(jīng)過(guò)精心挑選。每章都為初學(xué)者提供了常見(jiàn)錯(cuò)誤分析,每章結(jié)尾有很多有趣的習(xí)題,可以提高讀者上機(jī)編程的興趣?!峨p語(yǔ)版C++程序設(shè)計(jì)》是國(guó)內(nèi)首次出版的中英文對(duì)照混排式雙語(yǔ)版C++程序設(shè)計(jì)教材,既方便初學(xué)者熟悉相關(guān)概念和內(nèi)容,也便于英文非母語(yǔ)的讀者熟悉英文專業(yè)詞匯。《雙語(yǔ)版C++程序設(shè)計(jì)》可作為高等學(xué)校計(jì)算機(jī)相關(guān)專業(yè)或軟件學(xué)院的C++程序設(shè)計(jì)雙語(yǔ)教材,也可供程序員和編程愛(ài)好者參考使用。

作者簡(jiǎn)介

暫缺《雙語(yǔ)版C++程序設(shè)計(jì)(Learn C++ through English and Chinese)》作者簡(jiǎn)介

圖書(shū)目錄

Chapter One Introduction(緒論)
1.1 What is a computer program? (什么是計(jì)算機(jī)程序?)
1.2 Developing a computer program(開(kāi)發(fā)計(jì)算機(jī)程序)
1.3 Learning C++(學(xué)習(xí) C++)
1.4 Web site for this book(本書(shū)的網(wǎng)站)
1.5 Brief history of C++(C++簡(jiǎn)史)
1.6 ANSI/ISO C++ standard(ANSI/ISO C++標(biāo)準(zhǔn))
Chapter Two Beginning to Program in C++(C++編程入門(mén))
2.1 Constants(常量)
2.2 Variables(變量)
2.3 Simple output to the screen(簡(jiǎn)單的屏幕輸出)
2.4 Comments(注釋)
2.5 Data types(數(shù)據(jù)類型)
2.6 Data type sizes(數(shù)據(jù)類型的大?。?
2.7 Operators(運(yùn)算符)
2.8 Operator precedence(運(yùn)算符的優(yōu)先級(jí))
2.9 Type conversions and casts(類型轉(zhuǎn)換和強(qiáng)轉(zhuǎn))
Programming pitfalls
Quick syntax reference
Exercises
Chapter Three Keyboard Input and Screen Output(鍵盤(pán)輸入和屏幕輸出)
3.1 Simple keyboard input(簡(jiǎn)單的鍵盤(pán)輸入)
3.2 Manipulators(流操縱符)
3.3 Single-character input and output(單個(gè)字符的輸入和輸出)
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語(yǔ)句)
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(訪問(wèn)C風(fēng)格字符串中的單個(gè)字符)
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(對(duì)象和類)
Chapter Nine Pointers and Dynamic Memory(指針和動(dòng)態(tài)內(nèi)存分配)
Chapter Ten Operator Overloading(運(yùn)算符重載)
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

本目錄推薦

掃描二維碼
Copyright ? 讀書(shū)網(wǎng) m.ranfinancial.com 2005-2020, All Rights Reserved.
鄂ICP備15019699號(hào) 鄂公網(wǎng)安備 42010302001612號(hào)