-2

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 ?

4

3 回答 3

0

Including "abc.h" will look in the current directory. <abc.h> will look in the include directory, which can be provided at compile-time.

于 2013-02-05T15:36:08.217 回答
0

<abc.h>通常用于内置用途,例如数学,而"abc.h"通常用于定制用途。

于 2013-02-05T15:40:44.923 回答
0

首先在您的头文件中查找包含路径和相对于源文件路径的“abc.h”。

于 2013-02-05T15:47:59.420 回答