如何从不同头文件中的类继承?

时间:2008-10-31 12:08:23

标签: c++ inheritance organization

我有依赖性麻烦。我有两个班级:GraphicImage。每个人都有自己的.cpp和.h文件。我将它们声明如下:

Graphic.h


    #include "Image.h"
    class Image;
    class Graphic {
      ...
    };

Image.h
    


    #include "Graphic.h"
    class Graphic;
    class Image : public Graphic {
      ...
    };

当我尝试编译时,出现以下错误:

    Image.h:12: error: expected class-name before ‘{’ token

如果我从Graphic删除Image.h的转发声明,则会收到以下错误:

    Image.h:13: error: invalid use of incomplete type ‘struct Graphic’
    Image.h:10: error: forward declaration of ‘struct Graphic’

5 个答案:

答案 0 :(得分:10)

这对我有用:

image.h的:

#ifndef IMAGE_H
#define IMAGE_H

#include "Graphic.h"
class Image : public Graphic {

};

#endif

Graphic.h:

#ifndef GRAPHIC_H
#define GRAPHIC_H

#include "Image.h"

class Graphic {
};

#endif

以下代码编译时没有错误:

#include "Graphic.h"

int main()
{
  return 0;
}

答案 1 :(得分:5)

您不需要在Graphic.h中包含Image.h或forward声明Image - 这是一个循环依赖。如果Graphic.h依赖于Image.h中的任何内容,则需要将其拆分为第三个头。 (如果Graphic有一个Image成员,那就不行了。)

答案 2 :(得分:4)

Graphic.h不需要包含image.h,也不需要转发声明Image类。此外,Image.h不需要转发声明Graphic类,因为你#include定义该类的文件(如你所知)。

Graphic.h:

class Graphic {
  ...
};

Image.h

#include "Graphic.h"
class Image : public Graphic {
  ...
};

答案 3 :(得分:1)

由于Image扩展了Graphic,因此在Graphic.h文件中删除Image的包含。

Graphic.h

class Graphic {
  ...
};

答案 4 :(得分:0)

首先删除它,您必须始终拥有完整的类定义才能从类继承:

class Graphic;

其次,从Graphic.h中删除对Image的所有引用。父母通常不需要知道其孩子。