可能重复:
What is the difference between #include <filename> and #include “filename”?
我正在创建一个共享的C库。包括
时有什么区别吗?#include <mylib/someheader.h>
与
#include "mylib/someheader.h"
来自此库的*.c
或*.h
个文件?
答案 0 :(得分:1)
第一个版本用于系统标头,第二个版本用于外部标头。 无论编号如何,大多数编译器都会找到正确的标题。
答案 1 :(得分:0)
取决于编译器。其中一些可以在“system”包含路径和“just”包含路径之间有所不同。 &LT;&GT;表示系统包含路径