编缉文本文件,保存文件时用后缀”.h”
文件格局:
#ifndef _<文件名>_h_
#define _<文件名>_h_
…文件内容…
#endif
使用时把这个文件复制到新建的project地点的文件夹内,在程序中包括这个文件(#include <文件名.h>)就可以用了。
编缉文本文件,保存文件时用后缀.h文件格式:#ifndef_文件名>_h_#define_文件名>_h_…文件内容…#endif使用时把这个文件复制到新…
编缉文本文件,保存文件时用后缀”.h”
文件格局:
#ifndef _<文件名>_h_
#define _<文件名>_h_
…文件内容…
#endif
使用时把这个文件复制到新建的project地点的文件夹内,在程序中包括这个文件(#include <文件名.h>)就可以用了。