私の問題はかなりよくわかっていますが、私が探し求めてきたすべての解決策を試してみましたが、まだ動作しません。だから、どんな助けも大歓迎です! =)エラー - 不完全な型/フォワード宣言の無効な使用
ありがとうございます!
そこで、基本的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)
{
...
}
ここにすべての私は、(コアを含むヘッダファイルがあります:
私は、コンパイル時にこのエラーが発生しています.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__ */
(Player.hh)
#ifndef __PLAYER_H__
# define __PLAYER_H__
#include "Core.hh"
class Object;
class Player : public Object
{
...
};
#endif /* __PLAYER_H__ */
ヘッダーガードに[予約名](http://stackoverflow.com/questions/228783)を使用しないでください。 http://stackoverflow.com/questions/3345159 –
のような問題につながる可能性がありますあなたのタイトルに同じ誤りがありますが、おそらくあなたのための解決策はありません。そのクラスのヘッダーを苦情の下に含める必要がありましたクラスのパブリックメソッドが別のクラスによって参照された場合は、私のcppにあります。私には非常に複雑な依存関係があり、フォワード宣言を混在して使用しています。私はあなたがすでにそれを持っていたので、解決策よりもノートとしてここに書いています。 – kakyo