About the Authors iii
Preface viii
Acknowledgements x
Chapter 1 Introduction to C++
1.1 Introduction 1.1
1.2 Class Overview 1.1
1.2.1 Class 1.2
1.2.2 Objects 1.2
1.2.3 Class Members 1.3
1.3 I/O Streams 1.4
1.4 Access Control 1.7
1.5 Class Scope 1.10
1.6 Static Class Members 1.11
1.6.1 Static Member Variables 1.11
1.6.2 Static Member Function 1.12
1.6.3 Static Object 1.14
1.7 Functions 1.15
1.7.1 Parameter Passing Methods 1.16
1.7.2 Inline Functions 1.18
1.7.3 e friend Function 1.19
1.7.4 Function Overloading 1.22
1.8 e this Pointer 1.26
1.9 Dynamic Memory Allocation and
Deallocation 1.27
1.9.1 e new Operator 1.27
1.9.2 e delete Operator 1.28
1.10 Exception Handling 1.30
Summary 1.36
Exercises 1.36
Chapter 2 Object Oriented ...