发布时间:2014-06-10 14:25:10
在能使用宏或inline的情况下,建议使用inline。1.不合理的宏使用点击(此处)折叠或打开#define CUBE(X) ((X) * (X) * (X))int i = 2;int a = 81 / CUBE(++i); a扩展(结果未定义):点击(此处)折叠或打开int a = .........【阅读全文】
发布时间:2014-05-26 10:44:20
The Linux kernel makes devices appear as files in the folder /dev.In the boot folder (/boot), users will see a "vmlinux" or a "vmlinuz" file. Both are compiled Linux kernels. The one that ends in a "z" is compressed. The "vm" stands for virtual memory.The root of the kernel source code.........【阅读全文】
发布时间:2014-05-16 14:16:45
1 字典(Dictionary):在一个 dictionary 中不能有重复的 key。给一个存在的 key 赋值会覆盖原有的值。Note: Dictionary是无序的,Dictionary 的 key 是大小写敏感的。2.List负数索引从 list 的尾部开始向前计数来存取元素。任何一个非空的 list 最后一个元素总是 list[-1] 。如果在 list .........【阅读全文】
发布时间:2014-05-16 11:57:39
静态类型语言一种在编译期间就确定数据类型的语言。大多数静态类型语言是通过要求在使用任一变量之前声明其数据类型来保证这一点的。Java 和 C是静态类型语言。动态类型语言一种在运行期间才去确定数据类型的语言,与静态类型相反。VBScript和 Python 是动态类型的,因为它们确定一个变量的类型是在您第一.........【阅读全文】