Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: #include <ファイル名> と #include “ファイル名” の違いは何ですか?
include "abc.h" の意味と include との違いは何ですか?
含める"abc.h"と、現在のディレクトリが検索されます。<abc.h>コンパイル時に提供できるincludeディレクトリを調べます。
"abc.h"
<abc.h>
<abc.h>通常は数学などの組み込みの使用に使用されます"abc.h"が、通常はカスタマイズされた使用に使用されます。
最初にソースファイルのパスに関連するヘッダーインクルードパスと「abc.h」で検索されます。