我在以下文件上遇到了一些问题:
我在这个文件上有arcball结构:
#ifndef ARCBALL_H_
#define ARCBALL_H_
#include "ex1.h"
...
extern struct arcball{
float radius;
int x,y;
}arcball;
...
#endif /* ARCBALL_H_ */
我有以下ex1.h文件,其中包含arcball.h文件:
#ifndef __EX1_H__
#define __EX1_H__
////////////////////////////
// Project Includes
////////////////////////////
#include <stdlib.h>
#include <ctype.h>
#include <math.h>
#include "arcball.h"
////////////////////////////
// OpenMesh Includes
////////////////////////////
#include "OpenMesh/Core/IO/MeshIO.hh"
#include "OpenMesh/Core/Mesh/PolyMesh_ArrayKernelT.hh"
////////////////////////////
// GL Includes
////////////////////////////
#include "GLee.h"
#include <GL/gl.h>
#include <GL/glu.h>
#include <GL/glut.h>
...
struct arcball arcball;
#endif
我必须包含ex1.h标题,因为ex1.h包含了glut函数I 也可以在arcball.cpp文件中使用。 我必须使用arcball.h标头才能使用函数和结构 在该文件上定义。
我得到的错误如下:
In file included from arcball.h:11:0,
from arcball.cpp:8:
ex1.h:120:16: error: aggregate ‘arcball arcball’ has incomplete type and cannot be defined
make: *** [ex1] Error 1
我不明白为什么它是一个不完整的类型,因为我包含了arcball.h文件
这是一个相互包含问题还是结构定义/使用问题? 它怎么解决?
谢谢!
答案 0 :(得分:1)
这两个.h
文件相互包含,造成了很多混乱。这是一个非常糟糕的主意,因为#ifdef
周围会有不同的效果,具体取决于首先包含哪个文件:在这种情况下,arcball.h - &gt; ex1.h - &gt; arcball.h但很实在,没什么,因为-的-the- IFDEF#。
此外,在标题(此处为ex1.h)中声明没有extern
的变量也是一个坏主意。这可能没有你想要的效果。没有extern
的变量只能在.c
个文件中声明。