之前 在學習c/c++ 時只會在文件最開始時候調用#include “file.h”或者 #include <file.h>來 調用頭文件,其實include 還可以用來load 數據文件。
新建一個文件:hello.txt,其內容為"Hello world!!",
然後將 這些字符所對應的asc 碼數值寫到hello.hex文件中
寫Testbed 測試:
#include <stdio.h>
#include <stdlib.h>
char hex[] = {
#include "hello.hex"
};
int main()
{
printf("%s", hex);
system("pause");
return 0;
}
如果不轉化成 asc碼,如果想輸出字符,把文件中的字符串加上“”即 "Hello World!!"。
看到這裡,對include 有了更深刻更清晰的理解,它在編譯之前進行預處理,是負責將其link 到的文件,導入到改文件中(頭文件也一樣),這麼做的本質原因,是為了讓高級語言更加好維護,結構更加清晰
char hex[] = {
#include "hello.hex"
};
等同於
char hex[] = {
0x48, 0x65, 0x6C, 0x6C, 0x6F, 0x20, 0x57, 0x6F, 0x72, 0x6C, 0x64, 0x21, 0x21, 0x0D, 0x0A
};