gpt4 book ai didi

c++ - 错误 - 不完整类型/前向声明的无效使用

转载 作者:IT老高 更新时间:2023-10-28 21:57:48 27 4
gpt4 key购买 nike

我知道我的问题很常见,但我一直在搜索并尝试找到的所有解决方案,但仍然无法正常工作。所以任何帮助将不胜感激! =)

提前致谢!

我在编译时遇到这个错误:

g++ -ISFML/include -Iclasses/ -W -Wall -Werror   -c -o classes/Object.o classes/Object.cpp
In file included from classes/Core.hh:18:0,
from classes/Object.hh:4,
from classes/Object.cpp:1:
classes/MapLink.hh:9:1: error: invalid use of incomplete type ‘struct Object’
classes/MapLink.hh:6:7: error: forward declaration of ‘struct Object’
In file included from classes/Core.hh:19:0,
from classes/Object.hh:4,
from classes/Object.cpp:1:
classes/Player.hh:9:1: error: invalid use of incomplete type ‘struct Object’
classes/MapLink.hh:6:7: error: forward declaration of ‘struct Object’
make: *** [classes/Object.o] Error 1

所以基本上,我有一个包含 (main.cpp) 的主目录

#include "Core.hh"

int main(void)
{
...
}

这是包含我所有包含的头文件 (Core.hh)

#ifndef __CORE_HH__
# define __CORE_HH__

#include ...
#include "Object.hh"
#include "MapLink.hh"
#include "Player.hh"

class Core
{
...
};

#endif /* __CORE_HH__ */

然后是给我带来麻烦的文件(Object.hh)

#ifndef __OBJECT_HH__
# define __OBJECT_HH__

#include "Core.hh"

class Object
{
...
};

#endif /* __OBJECT_HH__ */

(MapLink.hh)

#ifndef __MAPLINK_H__
# define __MAPLINK_H__

#include "Core.hh"

class Object;

class MapLink : public Object
{
...
};

#endif /* __MAPLINK_H__ */

(播放器.hh)

#ifndef __PLAYER_H__
# define __PLAYER_H__

#include "Core.hh"

class Object;

class Player : public Object
{
...
};

#endif /* __PLAYER_H__ */

最佳答案

问题 1:
您必须仅从完全声明的类派生,否则编译器将不知道该做什么。
去掉前向声明class Object;.

问题 #2:
你有一个循环依赖:

  • 在“Core.hh”中包含“Object.hh”、“MapLink.hh”和“Player.hh”。
  • 在“Object.hh”、“MapLink.hh”和“Player.hh”中包含“Core.hh”。

您需要确保每个类都完全包含它所继承的类。
我不确定这些类如何相互交互,您应该在问题中提供该详细信息。
我的猜测是你需要修改你的包含如下:

  • 修改“MapLink.hh”和“PlayerLink.hh”,使其包含“Object.hh”,而不是“Core.hh”
  • 修改“Object.hh”,使其不包含“Core.hh”。

关于c++ - 错误 - 不完整类型/前向声明的无效使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11226561/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com