Windows理解
Jackiezhw
这个作者很懒,什么都没留下…
展开
-
Multi-Byte Character Set & Use Unicode Character Set
所有的 string 类都是以C-style字符串为基础的。C-style 字符串是字符数组。所以我们先介绍字符类型。这里有3种编码模式对应3种字符类型。第一种编码类型是单子节字符集(single-byte character set or SBCS)。在这种编码模式下,所有的字符都只用一个字节表示。ASCII是SBCS。一个字节表示的0用来标志SBCS字符串的结束。转载 2009-02-17 17:52:00 · 9169 阅读 · 0 评论 -
Trap includes Interrupt and Exception
Trap DispatchingInterrupts and exceptions are operating system conditions that divert the processor to code outsidethe normal flow of control. Either hardware or software can detect them. The term tra转载 2009-06-15 22:02:00 · 1402 阅读 · 0 评论