Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: #include <文件名> 和#include “文件名”有什么区别?
有没有区别:
#include "windows.h"
和
#include <windows.h>
谢谢。
是的。
#include "something"
尝试首先在当前目录中包含文件,并且
#include <something>
始终包含系统目录中的文件。