然后在项目的属性里,C/C++的常规,附加包含目录里添加该文件夹。然后直接在需要使用的类里面include对应的文件。
你可以使用自己建一个头文件比如:"xxx.h",这个xxx.h中可以添加你所需要的头文件,然后以后编写程序是只使用#include<xxx.h>,这就包括了许多头文件了.示例:xxx.h中有
#include<xxx1.h>
#include<xxx2.h>
#include<xxx3.h>
#include<xxx4.h>
然后你使用#include<xxx.h>就将
#include<xxx1.h>
#include<xxx2.h>
#include<xxx3.h>
#include<xxx4.h>
都包括了.
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)