积极答复者
md5.h

问题
答案
-
你好,
#include "xxx" 意思是在项目文件夹中寻找,如果没有找到,再在环境库(比如VC中可以指定和修改库文件查找路径)中寻找。
#include <xxx>意思是只在环境库中寻找。
所以相对于#include '"xxx" 而言,#include <xxx>的效率更高一些。
由于您添加的是本地头文件,所以需要编译器在项目文件夹中寻找所以需要使用#include“xxx”
希望我的回答对您的疑问有所帮助。
Rob Pan [MSFT]
MSDN Community Support | Feedback to us
Get or Request Code Sample from Microsoft
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
- 已标记为答案 Rob Pan 2011年6月13日 5:42
全部回复
-
-
你好,
#include "xxx" 意思是在项目文件夹中寻找,如果没有找到,再在环境库(比如VC中可以指定和修改库文件查找路径)中寻找。
#include <xxx>意思是只在环境库中寻找。
所以相对于#include '"xxx" 而言,#include <xxx>的效率更高一些。
由于您添加的是本地头文件,所以需要编译器在项目文件夹中寻找所以需要使用#include“xxx”
希望我的回答对您的疑问有所帮助。
Rob Pan [MSFT]
MSDN Community Support | Feedback to us
Get or Request Code Sample from Microsoft
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
- 已标记为答案 Rob Pan 2011年6月13日 5:42