2 Header Files
2.1 Include 语法
2.2 Include 操作
2.2.1 头文件的展开
2.2.2 Files that can be included
2.3 搜索路径
2.3.1 默认路径
2.3.2 路径的修改 Read More
1.1 Initial Processing
1.2 Tokenization
1.2.1 Preprocessor is greedy
1.2.2 Token Boundary
1.2.3 Tokens 的分类 Read More
1 Overview
1.1 Initial Processing
1.1.1 End Of Line (EOL)
1.1.2 Continued lines
1.1.3 Comments Read More
1: 写 C/C++ 代码时候,可以根据自动补全头文件。 注意,是补全,也就是说至少我们需要输入几个字符让它帮忙补全。
2: 如果头文件存放在搜索路径的子目录中,可以自动列出子目录中的文件, 并将这些文件添加到用于补齐的候选名单中。
3: 补齐完成之后,可以自动判断到底应该使用 #include 还是 #include "FILE" 。 Read More