登入帳戶  | 訂單查詢  | 購物車/收銀台( 0 ) | 在線留言板  | 付款方式  | 運費計算  | 聯絡我們  | 幫助中心 |  加入書簽
會員登入 新用戶登記
HOME新書上架暢銷書架好書推介特價區會員書架精選月讀2023年度TOP分類瀏覽雜誌 臺灣用戶
品種:超過100萬種各類書籍/音像和精品,正品正價,放心網購,悭钱省心 服務:香港台灣澳門海外 送貨:速遞郵局服務站

新書上架簡體書 繁體書
暢銷書架簡體書 繁體書
好書推介簡體書 繁體書

八月出版:大陸書 台灣書
七月出版:大陸書 台灣書
六月出版:大陸書 台灣書
五月出版:大陸書 台灣書
四月出版:大陸書 台灣書
三月出版:大陸書 台灣書
二月出版:大陸書 台灣書
一月出版:大陸書 台灣書
12月出版:大陸書 台灣書
11月出版:大陸書 台灣書
十月出版:大陸書 台灣書
九月出版:大陸書 台灣書
八月出版:大陸書 台灣書
七月出版:大陸書 台灣書
六月出版:大陸書 台灣書

『簡體書』C++面向对象程序设计双语教程(第2版)

書城自編碼: 2660562
分類:簡體書→大陸圖書→計算機/網絡程序設計
作者: 刘嘉敏 等编著
國際書號(ISBN): 9787118103656
出版社: 国防工业出版社
出版日期: 2015-08-01
版次: 2 印次: 1
頁數/字數: 273/405000
書度/開本: 16开 釘裝: 平装

售價:HK$ 66.6

我要買

 

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


新書推薦:
Fundamental of Physics(7th Edition) 基础物理学(第7版)(改编版)
《 Fundamental of Physics(7th Edition) 基础物理学(第7版)(改编版) 》

售價:HK$ 104.7
全2册历史不忍细看一本书读懂中国史中华上下五千年历史知识现代史通史书中小学生青少年课外书中国史历史类书籍
《 全2册历史不忍细看一本书读懂中国史中华上下五千年历史知识现代史通史书中小学生青少年课外书中国史历史类书籍 》

售價:HK$ 96.6
再见杨德昌:台湾电影人访谈纪事
《 再见杨德昌:台湾电影人访谈纪事 》

售價:HK$ 112.7
彩色图解传习录:彩书馆(16开四色平装)
《 彩色图解传习录:彩书馆(16开四色平装) 》

售價:HK$ 63.3
彩色图解第二次世界大战全史:彩书馆(16开四色平装)
《 彩色图解第二次世界大战全史:彩书馆(16开四色平装) 》

售價:HK$ 63.3
全彩图说中华典故:彩书馆(16开四色平装)
《 全彩图说中华典故:彩书馆(16开四色平装) 》

售價:HK$ 63.3
舌尖上的中国:中华美食的前世今生(生活养生)
《 舌尖上的中国:中华美食的前世今生(生活养生) 》

售價:HK$ 51.8
相泽沙呼作品集(心灵侦探城塚翡翠+城塚翡翠倒叙集)(共2册)
《 相泽沙呼作品集(心灵侦探城塚翡翠+城塚翡翠倒叙集)(共2册) 》

售價:HK$ 204.7

 

建議一齊購買:

+

HK$ 292.3
《Unity 5.X从入门到精通》
+

HK$ 146.2
《Android 源码设计模式解析与实战》
+

HK$ 127.7
《Visual Basic 2013从入门到精通(微软技术丛书》
+

HK$ 199.8
《疯狂Android讲义(第3版)(含CD光盘1张)》
+

HK$ 90.7
《.NET框架设计 模式、配置、工具》
+

HK$ 185.0
《HTML5+CSS3从入门到精通(配套视频227节,中小实例》
內容簡介:
由刘嘉敏、马广焜、常燕、朱世铁编著的《C++ 面向对象程序设计双语教程第2版普通高等院校十三五规划教材》从面向对象程序设计的特点出发,分章节循序渐进地介绍了面向对象的相关概念及运用C ++实现的过程,并辅以大量程序清单。同时书中在各个章节起始处明确了章节学习目标,且在全书中重要知识点处均有提示,各章末尾有本章出现的重要的词汇注解和本章相应的练习题,有助于读者理解书中内容,帮助读者掌握面向对象编程方法。全书共分8章, 具体内容包括:导论、基本工具、类和对象1、类和对象2、运算符重载、继承、多态性和虚函数、模板。
目錄
Chapter 1 Introduction
 1.1 Overview of Programming
1.1.1 What Is Programming?
1.1.2 How Do We Write a Program?
 1.2 The Evolution of Programming Language
1.2.1 Assembly and Machine Languages
1.2.2 Early Languages
1.2.3 Later-Generation Languages
1.2.4 Modem Languages
 1.3 Programming Methodologies
1.3.1 Structured Programming
1.3.2 Object-Oriented Programming
 1.4 Object-Oriented Programming
 1.5 C + + Programming Language
1.5.1 History of CandC++
1.5.2 Learning C++
 Word Tips
 Exercises
Chapter 2 Basic Facilities
 2.1 C++ Program Structure
 2.2 Input Output Streams
 2.3 Constant
 2.4 Functions
2.4.1 Function Declarations
2.4.2 Function Definitions
2.4.3 Default Arguments
2.4.4 Inline Functions
2.4.5 Overloading Functions
 2.5 References
2.5.1 Reference Definition
2.5.2 Reference Variables as Parameters
2.5.3 References as Value-Returning
2.5.4 References as Left-Hand Values
 2.6 Namespaces
 Word Tips
 Exercises
Chapter 3 Classes and Objects Ⅰ
 3.1 Structures
3.1.1 Defining a Structure
3.1.2 Accessing Members of Structures
3.1.3 Structures with Member Functions
 3.2 Data Abstraction and Classes
3.2.1 Data Abstraction
3.2.2 Defining Classes
3.2.3 Defining Objects
3.2.4 Accessing Member Functions
3.2.5 In-Class Member Function Definition
3.2.6 File Structure of an Abstract Data Type
 3.3 Information Hiding
 3.4 Access Control
 3.5 Constructors
3.5.1 Overloading Constructors
3.5.2 Constructors with Default Parameters
 3.6 Destructors
3.6.1 Definition of Destructors
3.6.2 Order of Constructor and Destructor Calls
 3.7 Encapsulation
 3.8 Case Study: A GradeBook Class
 Word Tips
 Exercises
Chapter 4 Classes and Objects Ⅱ
 4.1 Constant Member Functions and Constant Objects
4.2 this Pointers
4.3 Static Members
  4.3.1 Static Data Members
  4.3.2 Static Member Functions
4.4 Free Store
4.5 Objects as Members of Classes
4.6 Copy Members
  4.6.1 Definition of Copy Constructors
  4.6.2 Shallow Copy and Deep Copy
4.7 Arrays of Objects
  4.7.1 Initialize an Array of Objects by Using a Default Constructor
  4.7.2 Initialize an Array of Objects by Using Constructors with Parameters
4.8 Friends
  4.8.1 Friend Functions
  4.8.2 Friend Classes
 4.9 Case Study : Examples of Used-defined Types
  4.9.1 A Better Date Class
  4.9.2 A GradeBook Class with Objects of the Student Class
 Word Tips
 Exercises
Chapter 5 Operator Overloading
 5.1 Why Operator Overloading Is Need
 5.2 Operator Functions
5.2.1 Overloaded Operators
5.2.2 Operator Functions
 5.3 Binary and Unary Operators
5.3.1 Overloading Binary Operators
5.3.2 Overloading Unary Operators
 5.4 Overloading Combinatorial Operators
 5.5 Mixed Arithmetic of User-Defined Types
 5.6 Type Conversion of User-Defined Types
 5.7 Examples of Operator Overloading
5.7.1 A Complex Number Class
5.7.2 A String Class
 Word Tips
 Exercises
Chapter 6 Inheritance
 6.1 Class Hierarchies
 6.2 Derived Classes
6.2.1 Declaration of Derived Classes
6.2.2 Structure of Derived Classes
 6.3 Constructors and Destructors of Derived Classes
6.3.1 Constructors of Derived Classes
6.3.2 Destructors of Derived Classes
6.3.3 Order of Calling Class Objects
6.3.4 Inheritance and Composition
 6.4 Member Functions of Derived Classes
 6.5 Access Control
6.5.1 Access Control in Classes
6.5.2 Access to Base Classes
 6.6 Multiple Inheritance
6.6.1 Declaration of Multiple Inheritance
6.6.2 Constructors of Multiple Inheritance
 6.7 Virtual Inheritance
6.7.1 Multiple Inheritance Ambiguities
6.7.2 Trying to Solve Inheritance Ambiguities
6.7.3 Virtual Base Classes
6.7.4 Constructing Objects of Multiple Inheritance
  Word Tips
  Exercises
Chapter 7 Polymorphism and Virtual Functions
  7.1 Polymorphism
7.1.1 Concept of Polymorphism
7.1.2 Binding
  7.2 Virtual Functions
7.2.1 Definition of Vitual Functions
7.2.2 Extensibility
7.2.3 Principle of Virtual Functions
7.2.4 Virtual Destructors
7.2.5 Function Overloading and Function Overriding
 7.3 Abstract Base Classes
 7.4 Case Study: A Mini System
 Word Tips
 Exercises
Chapter 8 Templates
 8.1 Template Mechanism
 8.2 Function Templates and Template Functions
8.2.1 Why We Use Function Templates?
8.2.2 Definition of Function Templates
8.2.3 Function Template Instantiation
8.2.4 Function Template with Different Parameter Types
8.2.5 Function Template Overloading
 8.3 Class Templates and Template Classes
8.3.1 Definition of Class Templates
8.3.2 Class Template Instantiation
 8.4 Non-Type Parameters for Templates
 8.5 Derivation and Class Templates
 8.6 Case Study : An Example of the Vector Class Template
 Word Tips
 Exercises
References

 

 

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