代码搜索:Addison
找到约 5,402 项符合「Addison」的源代码
代码结果 5,402
www.eeworm.com/read/363596/9943594
readme
This hierarchy contains all the source code from my book
"C Interfaces and Implementations: Techniques for Creating Reusable
Software (Addison-Wesley Professional Computing Series, 1997,
ISBN 0-201-49
www.eeworm.com/read/159920/10589746
lst resource.lst
The following messages are a list of resources that I've put together
from recommendations in this echo. These include books, magazines and
compiler vendors.
The format for book entries is as fo
www.eeworm.com/read/396808/8089152
txt 第11章 其它编程经验.txt
11.1 使用const提高函数的健壮性
看到const关键字,C++程序员首先想到的可能是const常量。这可不是良好的条件反射。如果只知道用const定义常量,那么相当于把火药仅用于制作鞭炮。const更大的魅力是它可以修饰函数的参数、返回值,甚至函数的定义体。
const是constant的缩写,“恒定不变”的意思。被const修饰的东西都受到强制保护,可以预防意外的变动,能提高程序的 ...
www.eeworm.com/read/396808/8089177
txt 第11章 其它编程经验.txt
11.1 使用const提高函数的健壮性
看到const关键字,C++程序员首先想到的可能是const常量。这可不是良好的条件反射。如果只知道用const定义常量,那么相当于把火药仅用于制作鞭炮。const更大的魅力是它可以修饰函数的参数、返回值,甚至函数的定义体。
const是constant的缩写,“恒定不变”的意思。被const修饰的东西都受到强制保护,可以预防意外的变动,能提高程序的 ...
www.eeworm.com/read/140120/13108179
h boardviewer.h
/* Code for exercise 15.3.
|
| "C++ Solutions--Companion to The C++ Programming Language, Third Edition"
| by David Vandevoorde; Addison-Wesley 1998; ISBN 0-201-30965-3.
|
| Permission to u