C++编程思想

本网站不提供下载链接,喜欢看书的朋友请关注公众号:【lennylee的碎碎念】(lennyleede),首页回复:授人以渔,自动获取搜索资源的方法。

内容简介:

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
· · · · · · (收起)

原文摘录:

“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” (查看原文)

小顽强
2011-08-01 06:04:20

—— 引自第348页

在C中,我们常常发现能使程序通过编译,然后我们必须再花力气使它工作。 (查看原文)

[已注销]
2011-12-16 15:08:10

—— 引自第114页