我试图使用前向声明为尽我所能,以尽量减少编译时间。 我注意到,当我向前声明中使用类似的std ::向量作为一个成员对象(例如这里)类:
class myTypeA
class A
{
A(){};
~A(){};
std::vector<myTypeA > getTypeA();
}
我得到以下错误:
microsoft visual studio 9.0\vc\include\vector(1112) : error C2036: 'myTypeA *' : unknown size
1> c:\program files\microsoft visual studio 9.0\vc\include\vector(1102) : while compiling class template member function 'bool std::vector<_Ty>::_Buy(unsigned int)'
1> with
1> [
1> _Ty=myTypeA
1> ]
1> d:\cpp\A.h(15) : see reference to class template instantiation 'std::vector<_Ty>' being compiled
1> with
1> [
1> _Ty=myTypeA
1> ]
当我使用的#include“myTypeA.h”这是工作的罚款,为什么呢?