登入帳戶  | 訂單查詢  | 購物車/收銀台(0) | 在線留言板  | 付款方式  | 聯絡我們  | 運費計算  | 幫助中心 |  加入書簽
會員登入 新註冊 | 新用戶登記
HOME新書上架暢銷書架好書推介特價區會員書架精選月讀2023年度TOP分類閱讀雜誌 香港/國際用戶
最新/最熱/最齊全的簡體書網 品種:超過100萬種書,正品正价,放心網購,悭钱省心 送貨:速遞 / EMS,時效:出貨後2-3日

2024年10月出版新書

2024年09月出版新書

2024年08月出版新書

2024年07月出版新書

2024年06月出版新書

2024年05月出版新書

2024年04月出版新書

2024年03月出版新書

2024年02月出版新書

2024年01月出版新書

2023年12月出版新書

2023年11月出版新書

2023年10月出版新書

2023年09月出版新書

『簡體書』C++语言程序设计(英文版)

書城自編碼: 3708213
分類: 簡體書→大陸圖書→教材研究生/本科/专科教材
作者: 郑莉 著,郑莉 编
國際書號(ISBN): 9787302374848
出版社: 清华大学出版社
出版日期: 2015-06-01

頁數/字數: /
書度/開本: 16开 釘裝: 平装

售價:NT$ 400

我要買

share:

** 我創建的書架 **
未登入.



新書推薦:
津轻:日本无赖派文学代表太宰治自传性随笔集
《 津轻:日本无赖派文学代表太宰治自传性随笔集 》

售價:NT$ 302.0
河流之齿
《 河流之齿 》

售價:NT$ 270.0
新经济史革命:计量学派与新制度学派
《 新经济史革命:计量学派与新制度学派 》

售價:NT$ 406.0
盗墓笔记之秦岭神树4
《 盗墓笔记之秦岭神树4 》

售價:NT$ 259.0
战胜人格障碍
《 战胜人格障碍 》

售價:NT$ 302.0
逃不开的科技创新战争
《 逃不开的科技创新战争 》

售價:NT$ 467.0
漫画三国一百年
《 漫画三国一百年 》

售價:NT$ 250.0
希腊文明3000年(古希腊的科学精神,成就了现代科学之源)
《 希腊文明3000年(古希腊的科学精神,成就了现代科学之源) 》

售價:NT$ 374.0

建議一齊購買:

+

NT$ 261
《 电工与电子技术基础学习指导 》
+

NT$ 572
《 病理学(第9版/本科临床/配增值) 》
+

NT$ 183
《 水产养殖技术(顾洪娟) 》
+

NT$ 370
《 大学语文(第十版) 》
+

NT$ 428
《 传播学教程(第二版)(21世纪新闻传播学系列教材;“十一五”国家级规划教材) 》
+

NT$ 374
《 园艺设施设计与建造 》
內容簡介:
《清华大学计算机系列教材:C 语言程序设计(英文版)》针对程序设计的初学者,以面向对象的程序设计思想为主线,以通俗易懂的方法介绍C 语言,引导读者以很自然的方式,将人类习惯的面向对象的思维方法运用到程序设计中。主要内容包括:程序设计基础知识、类与对象的基本概念、继承与多态、输入输出流以及泛型程序设计。此外,《清华大学计算机系列教材:C 语言程序设计(英文版)》还介绍了一些常用的数据结构基础知识,使得读者学习此书后,能够解决一些简*的实际问题。本教材还配有中文版及中文版学生用书和电子课件,整套教材语言生动、流畅,深入浅出。适用于各类学校的C 语言程序设计课程。
目錄
Chapter 1 Introduction
1. 1 The Development of Computer Programming Language
1.1.1 Machine Language and Assembly Language
1.1.2 High-level Language
1.1.3 Object-oriented Language
1.2 Object-oriented Method
1.2.1 The Origin of Object-oriented Method
1.2.2 Basic Concepts of Object-oriented
1.3 Object-oriented Software Development
1.3.1 Analysis
1.3.2 Design
1.3.3 Programming
1.3.4 Test
1.3.5 Maintenance
1.4 Representation and Storage of Information
1.4.1 Digital System of Computer
1.4.2 Conversions among Numeral Systems
1.4.3 Storage Units of Information
1.4.4 Binary-coded Representation
1.4.5 Fixed Point Number and Floating Point Number
1.4.6 The Number Range That Can Be Represented
1.4.7 Representation of Non-numerical Information
1.5 The Development Process of Programs
1.5.1 Elementary Terms
1.5.2 The Development Process
Summary
Exercises
Chapter 2 Elementary C Programming
2.1 An Overview of C Language
2.1.1 Origins of C
2.1.2 Characteristics of C
2.1.3 C Programming Examples
2.1.4 Character Set
2.1.5 Lexical Tokens
2.2 Basic Da** *y*es and Expressions
2.2.1 Basic Da** *y*es
2.2.2 Constants
2.2.3 Variables
2.2.4 Symbol Constants
2.2.5 Operators and Expressions
2.2.6 Statement
2.3 Data Inpu***nd**utput
2.3.1 I/O Stream
2.3.2 Predefined Inpu***nd**utput Operator
2.3.3 Simple I/O Format Control
2.4 The Fundamental Control Structures of Algorithms
2.4.1 Achieving Case Structure Using if Statement
2.4.2 Multiple Selection Structure
2.4.3 Loop Structure
2.4. 4 Nestings of Loop Structure and Case Structure
2.4.5 Other Control Statements
2.5 User-Defined Da** *y*e
2.5.1 typedef Declaration
2.5.2 Enumeration Type--chum
2.5.3 Structure
2.5.4 Union
Summary
Exercises
Chapter 3 Functions
3.1 Definition and Use of Function
3.1.1 Definition of Function
3.1.2 Function Calls
3.1.3 Passing Parameters between Functions
3.2 Inline Functions
3.3 Default Formal Parameters in Functions
3.4 Function Overloading
3.5 Using C System Functions
Summary
Exercises
Chapter 4 Class and Object
4.1 Basic Features of Object-Oriented Design
4.1.1 Abstraction
4.1.2 Encapsulation
……
Chapter 5 Data Sharing and Protecting
Chapter 6 Arrays, Pointers and Strings
Chapter 7 Inheritance and Derivation
Chapter 8 Polymorphism
Chapter 9 Collections and Their Organization
Chapter 10 Generic Programming and STL
Chapter 11 The I/O Stream Library and Input/Output
Chapter 12 Exception Handling
Summary
Exercises

 

 

書城介紹  | 合作申請 | 索要書目  | 新手入門 | 聯絡方式  | 幫助中心 | 找書說明  | 送貨方式 | 付款方式 香港用户  | 台灣用户 | 海外用户
megBook.com.tw
Copyright (C) 2013 - 2024 (香港)大書城有限公司 All Rights Reserved.