可能重复:
What is the difference between #include <filename> and #include “filename”?
之间是否存在差异:
#include "windows.h"
和
#include <windows.h>
感谢。
答案 0 :(得分:5)
是。
#include "something"
尝试首先在当前目录中包含文件,然后
#include <something>
始终包含系统目录中的文件。