Object-Oriented Programming Using C++, 2/e
暫譯: 使用 C++ 的物件導向程式設計(第二版)
Ira Pohl
- 出版商: Addison Wesley
- 出版日期: 1996-12-16
- 售價: $735
- 語言: 英文
- 頁數: 576
- 裝訂: Paperback
- ISBN: 0201895501
- ISBN-13: 9780201895506
-
相關分類:
C++ 程式語言、Object-oriented
無法訂購
買這商品的人也買了...
-
$1,029Fundamentals of Data Structures in C++
-
$686Introduction to the Theory of Computation
-
$399CCNA Self-Study: Interconnecting Cisco Network Devices (Hardcover)
-
$650$514 -
$970Introduction to Algorithms, 2/e
-
$1,150$1,127 -
$500$450 -
$1,740$1,653 -
$3,120$2,964 -
$1,274Computer Architecture: A Quantitative Approach, 3/e(精裝本)
-
$720$569 -
$690$587 -
$590$466 -
$690$538 -
$560$476 -
$850$723 -
$580$458 -
$880$748 -
$450$351 -
$880$695 -
$680$537 -
$620$490 -
$750$585 -
$580$458 -
$890$757
相關主題
商品描述
Table Of Contents
1. Why Object-Oriented Programming in C++.Why C++ is a Better C.
Encapsulation and Type Extensibility.
Construction of Objects.
Conversions, Operators, and Seamless Types.
Inheritance.
Polymorphism.
Benefits of Object-Oriented Programming.
2. Native Types and Statements.
Input and Output.
Program Structure.
Simple Types.
The Traditional Conversions.
Enumeration Types.
Expressions.
Statements.
3. Functions and Pointers.
Function Definition.
The RETURN Statement.
Function Prototypes.
Default Arguments.
Overloading Functions.
Inlining.
Scope.
Storage Class.
Pointer Types.
Reference Declarations and Call-By-Reference.
The Use of VOID.
Arrays and Pointers.
The Relationship Between Arrays and Pointers.
Passing Arrays to Functions.
Strings: A Kernel Language ADT.
Multidimensional Arrays.
Free Storage Operators NEW and DELETE.
4. Implementing ADTs in the Base Language.
Structure Pointer Operator.
An Example: Stack.
Unions.
Complex Numbers.
An Example: Flushing.
Bit Fields.
An Example: Dynamic Arrays.
5. Data Hiding and Member Functions.
Visibility PRIVATE and PUBLIC.
Classes.
Class Scope.
STATIC Member.
An Example: Revisiting Flushing.
The THIS Pointer.
STATIC and CONST Member Functions.
Containers and Items Access.
6. Object Creation.
Construction a Dynamically Sized Stack.
Classes with Destructors.
An Example: Dynamically Allocated Strings.
A Class.
Members That Are Class Types.
An Example: A Singly Linked List.
Polynomials as a Linked List.
Strings Using Reference Semantics.
No Constructor Copy Constructor, and Other Mysteries.
7. Ad Hoc Polymorphism.
Overloading and Function Selection.
FRIEND Functions.
Overloading Operators.
Unary Operator Overloading.
Binary Operator Overloading.
Overloading Assignment and Subscripting Operators.
More Signature Matching.
Polynomial: Type and Language Expectations.
8. Visitation: Iterators and Containers.
Iterators.
An Example: QUICKSORT.
Friendly Classes and Iterators.
Overloading Operator () for Indexing.
Overloading NEW and DELETE.
Pointer Operators and Smart Pointers.
Genericity with VOID.
9. Inheritance: Subtyping and Code Reuse.
Typing Conversions and Visibility.
Code Reuse: A Dynamic Array Bounds.
Code Reuse: A Binary Tree Class.
Virtual Functions.
Abstract Base Classes.
Multiple Inheritance.
Inheritance and Design.
Detailed C++ Considerations.
10. Parametric Polymorphism.
Function Templates.
Class Templates.
Parameterizing the Class VECT.
Parameterizing QUICKSORT.
Parameterized Binary Search Tree.
Inheritance.
Ownership and Design Issues.
Detailed Considerations.
11. Exceptions.
Using SIGNAL.H.
C++ Exceptions.
Throwing Exceptions.
TRY Blocks.
Handlers.
Exception Specification.
TERMINATE () and UNEXPECTED().
Example Exception Code.
The Philosophy of Error Recovery.
12. OOP Using C++.
ADTs in Non-OOP Languages.
Clients and Manufacturers.
Reuse and Inheritance.
Polymorphism.
Language Complexity.
C++ OOP Bandwagon.
Platonism: Tabula Rasa Design.
Design Principles.
Schema, Diagrams and Tools.
Last Word.
Appendices.
Operator Precedence and Associativity.
C++ Language Guide.
Input and Output.
Index. 0201895501T04062001

商品描述(中文翻譯)
目錄
1. 為什麼在 C++ 中使用物件導向程式設計。
物件導向程式設計。
為什麼 C++ 比 C 更好。
封裝與型別擴展性。
物件的建構。
轉換、運算子與無縫型別。
繼承。
多型。
物件導向程式設計的好處。
2. 原生型別與語句。
程式元素。
輸入與輸出。
程式結構。
簡單型別。
傳統轉換。
列舉型別。
表達式。
語句。
3. 函數與指標。
函數。
函數定義。
RETURN 語句。
函數原型。
預設參數。
函數重載。
內聯。
範圍。
儲存類別。
指標型別。
引用宣告與引用傳遞。
VOID 的使用。
陣列與指標。
陣列與指標之間的關係。
將陣列傳遞給函數。
字串:一種核心語言 ADT。
多維陣列。
自由儲存運算子 NEW 和 DELETE。
4. 在基礎語言中實現 ADT。
聚合型別 STRUCT。
結構指標運算子。
一個範例:堆疊。
聯合。
複數。
一個範例:清空。
位元欄位。
一個範例:動態陣列。
5. 資料隱藏與成員函數。
成員函數。
可見性 PRIVATE 和 PUBLIC。
類別。
類別範圍。
STATIC 成員。
一個範例:重新檢視清空。
THIS 指標。
STATIC 和 CONST 成員函數。
容器與項目存取。
6. 物件創建。
具有建構子的類別。
建構一個動態大小的堆疊。
具有解構子的類別。
一個範例:動態分配的字串。
一個類別。
成員為類型的成員。
一個範例:單向鏈結串列。
多項式作為鏈結串列。
使用引用語義的字串。
無建構子、複製建構子及其他謎團。
7. 特殊多型。
類別定義的轉換。
重載與函數選擇。
FRIEND 函數。
重載運算子。
一元運算子重載。
二元運算子重載。
重載賦值與下標運算子。
更多簽名匹配。
多項式:型別與語言期望。
8. 訪問:迭代器與容器。
訪問。
迭代器。
一個範例:QUICKSORT。
友好類別與迭代器。
重載運算子 () 以進行索引。
重載 NEW 和 DELETE。
指標運算子與智能指標。
使用 VOID 的通用性。
9. 繼承:子類型與代碼重用。
派生類別。
型別轉換與可見性。
代碼重用:動態陣列邊界。
代碼重用:二元樹類別。
虛擬函數。
抽象基類。
多重繼承。
繼承與設計。
詳細的 C++ 考量。
10. 參數多型。
模板類別 Stack。
函數模板。
類別模板。
參數化類別 VECT。
參數化 QUICKSORT。
參數化二元搜尋樹。
繼承。
所有權與設計問題。
詳細考量。
11. 異常。
使用 ASSERT.H。
使用 SIGNAL.H。
C++ 異常。
拋出異常。
TRY 區塊。
處理器。
異常規範。
TERMINATE () 和 UNEXPECTED()。
異常代碼範例。
錯誤恢復的哲學。
12. 使用 C++ 的 OOP。
OOP 語言要求。
非 OOP 語言中的 ADT。
客戶端與製造商。
重用與繼承。
多型。
語言複雜性。
C++ OOP 熱潮。
柏拉圖主義:白板設計。
設計原則。
架構、圖表與工具。
最後的話。
附錄。
ASCII 字元碼。
運算子優先順序與結合性。
C++ 語言指南。
輸入與輸出。
索引。 0201895501T04062001