关于在C中出现的循环引用问题, 目的希望学习到如何规避头文件循环引用出现的这类错误.大概逻辑描述main.c : 是程序入口, a.h,b.h,c.h 为头文件;其中a.h 中 include c.h; c.h include b.h ;b.h include a.h运行程序报错,相关代码main.c#include <stdio.h>#include "a.h"int main(int argc, const char * argv[]) { printf("Hello ! \n"); return 0;
}a.h#ifndef a_h#define a_h#include "c.h"struct sem{
struct eve *evet;};#endif /* a_h */b.h#ifndef b_h#define b_h#include "a.h"struct pan{
struct sem semt;};struct dev{
int x;
};#endif /* b_h */c.h#ifndef c_h#define c_h#include "b.h"struct eve{
struct dev *devt;};#endif /* c_h */期待给出自己遇到的关于头文件循环引用的例子和解决方法,有理有据;之所以问题发出来希望帮助更多遇到类似问题的人,同时希望答案相对全面一些.
1 回答
- 1 回答
- 0 关注
- 1593 浏览
添加回答
举报
0/150
提交
取消