读书笔记
glbian
简简单单
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Advanced Windows Debug - Memory Corruption - Stacks
Memory Corruption - StacksCondition1. The executing thread writes to a block of memory that it does not own2. The executing thread writes to a block of memory that it does own, but c原创 2012-01-29 15:53:53 · 1474 阅读 · 0 评论 -
CPP Primer 4th
CPP Primer 4th - chapter 13 复制控制摘要复制构造函数、赋值操作符和析构函数总称为复制控制。有一种特别常见的情况需要类定义自己的复制控制成员:类具有指针成员。如果没有定义复制构造函数,编译器就会为我们合成一个。与合成的默认构造函数不同,即使我们定义了其他构造函数,也会合成复制构造函数。合成复制构造函数的行为是,执行逐个成员初始化,将新对象初始化为原对象的副本。原创 2012-01-16 20:35:31 · 356 阅读 · 0 评论 -
读书笔记 - Linux Kernel Development
Chapter One: Introduction to Linux KernelMonolithic Kernel vs. MicrokernelMonolithic Kernels: implemented entirely as a signle process running in a single address space. The kernel can invoke func原创 2013-09-04 22:25:56 · 618 阅读 · 0 评论
分享