当前位置:  开发笔记 > 编程语言 > 正文

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

如何解决《如何从不同头文件中的类继承?》经验,为你挑选了2个好方法。

我有依赖性麻烦.我有两个班: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’

Claudiu.. 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;
}


marijne.. 5

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



1> Claudiu..:

这对我有用:

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;
}



2> marijne..:

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

推荐阅读
小白也坚强_177
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有