
Knowledge Base
文章平均质量分 80
数据我最大
这个作者很懒,什么都没留下…
展开
-
Winsxs
http://www.ghacks.net/2010/07/24/the-winsxs-folder-explained/转载 2012-11-30 14:05:51 · 448 阅读 · 0 评论 -
Ascii vs. Binary Files
Introduction Most people classify files in two categories: binary files and ASCII (text) files. You've actually worked with both. Any program you write (C/C++/Perl/HTML) is almost surely an AS转载 2012-11-23 15:57:09 · 839 阅读 · 0 评论 -
DBCS字符集
Most applications written today handle character data primarily as Unicode, using the UTF-16 encoding. However, many legacy applications continue to use character sets based on code pages. Even new原创 2013-11-26 09:23:43 · 1194 阅读 · 0 评论 -
预处理指令
1. 人们常常称机器语言为目标代码(Object code) 2. 预处理命令(Preprocessor directives)三种预处理包括:宏定义、文件包含、条件编译。在对源程序编译之前,会对程序中的所有预处理指令进行处理。预处理就是在进行编译的第一遍词法扫描和语法分析之前所作的工作。说白了,就是对源文件进行编译前,先对预处理部分进行处理,然后对处理后的代码进行编译。 宏定义: #de原创 2013-12-24 19:43:31 · 744 阅读 · 0 评论