C++编程思想(英文本),ISBN:9787111091622,作者:(美)Bruce Eckel著
......(更多)
Bruce Eckel是《Java编程思想》的作者,他有20年专业编程经验,并自1986年起教育人们如何撰写面向对象程序,足迹遍及全球,成为一位知名的C++教师和顾问,如今兼涉Java。Eckel是C++标准委员会拥有表决权的成员之一,曾经写过另五本面向对象编程书籍,发表过150篇以上的文章,是多本计算机杂志的专栏作家。Eckel开创Software Development Conference的C++、Java、Python等多项研讨活动。拥有应用物理学学士和计算机工程学硕士学位。
......(更多)
Preface
1: Introduction to Objects
2: Making & Using Objects
3: The C in C++
4: Date Abstraction
5: Hiding the Implementation
6: Initialization & Cleanup
7: Function Overloading & Default
8: Constants
9: Inline Functions
10: Name Control
11: References & the Copy-Constructor
12: Operator
13: Dynamic Object Creation
14: Inheritance & Composition
15: Polymorphism & Virtual Functions
16: Introduction to Templates
A: Coding Style
B: Programming Guidelines
C: Recommended Reading
Index
......(更多)
在C中,我们常常发现能使程序通过编译,然后我们必须再花力气使它工作。
"you shouldn't use a default argument as a flag upon which to conditionallly execute code. you should instead break the function into two or more overloaded functions"
......(更多)