开发者

vtable error. "vtable for ETRun", referenced from:

I ha开发者_运维技巧ve an object called Run. I can instantiate in header of a class. But, when i try to do the same .cpp file the above error was popped out.

vtable error. "vtable for Run", referenced from: __ZTV5Run$non_lazy_ptr in Para.o

string Para::name()
{ 
 Run* newRun = new Run;

 return mName;
}

how can i get out of this error...


This probably happens because Run is a derived class, and it has a declaration of some virtual function but this function is not implemented.

Try to check whether your problem is this case.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜