Possible Duplicate:
What is the difference between #include <filename> and #include “filename”?
What is the meaning of include "abc.h" and how it is different from include ?
Possible Duplicate:
What is the difference between #include <filename> and #include “filename”?
What is the meaning of include "abc.h" and how it is different from include ?
Including "abc.h"
will look in the current directory. <abc.h>
will look in the include directory, which can be provided at compile-time.
<abc.h>
通常用于内置用途,例如数学,而"abc.h"
通常用于定制用途。
首先在您的头文件中查找包含路径和相对于源文件路径的“abc.h”。