标签: c++ include compilation
可能重复: What is the difference between #include <filename> and #include “filename”?
这与使用尖括号和引号在C ++中包含文件之间的区别有关,即:
#include "mypath/myfile"
VS
#include <mypath/myfile>
据我所知,编译器搜索文件的方式各不相同(来自here)。但是,它是否会影响文件的方式?每种情况都包含相同的内容(定义,模板等)吗?