次のようなクラスを作成すると:
// B.h
#ifndef _B_H_
#define _B_H_
class B
{
private:
int x;
int y;
};
#endif // _B_H_
次のように使用します。
// main.cpp
#include <iostream>
#include <vector>
class B; // Forward declaration.
class A
{
public:
A() {
std::cout << v.size() << std::endl;
}
private:
std::vector<B> v;
};
int main()
{
A a;
}
コンパイル時にコンパイラが失敗しmain.cpp
ます。今私が知っている解決策は#include "B.h"
ですが、なぜ失敗するのか興味があります。g++
またはのどちらcl
のエラー メッセージも、この問題に関しては非常に啓発的ではありませんでした。