可能重複:
What is the difference between #include <filename> and #include 「filename」?#include <...>和#include「...」之間的區別?
什麼是包括 「abc.h」 的意思,它是如何從包括不同?
可能重複:
What is the difference between #include <filename> and #include 「filename」?#include <...>和#include「...」之間的區別?
什麼是包括 「abc.h」 的意思,它是如何從包括不同?
包括"abc.h"
將在當前目錄中查找。包含目錄的<abc.h>
將在編譯時提供。
包括「 abc.h「將在當前目錄中查找,如果沒有找到它,它還會檢查包含路徑目錄。 –
啊。從來不知道:)。 –
我在當前目錄中找不到特定的頭文件,但它位於除include之外的其他目錄中,因此編譯器無法打開它。可以將它複製到當前目錄可能有幫助嗎? –
<abc.h>
通常用於內置使用,如數學,而"abc.h"
通常用於定製使用。
正在您的頭文件中搜索包含路徑和「abc.h」,相對於您的源文件路徑。
在這裏你去,下次做一些搜索http://stackoverflow.com/questions/21593/what-is-the-difference-between-include-filename-and-include-filename?rq=1 – Oerd