每当我尝试访问虚拟功能时,都会遇到分段错误。代码基本上是这样的:
class Super {
public:
Super() { cout << "Ctor Super" << endl; }
virtual void test() = 0;
};
class Sub : public Super {
public:
Sub() { cout << "Ctor Sub" << endl; }
void test() { cout << "Test in Sub" << endl; }
};
void main()
{
Super* s = new Sub;
s->test(); // Segmentation fault So I tried the one below
Sub* s1 = new Sub;
s1->test(); //Still segmentation fault
Sub s2;
s2.test(); // Works fine BUT
Super *s3 = &s2;
s3->test(); // segmentation fault and EVEN
Sub *s4 = &s2;
s4->test(); //segmentation fault
}
我几乎尝试了我所知道的关于虚函数的一切,但它不起作用。它实际上是一个更大程序的一部分,所以它可能在那里有一些问题,但是一旦我删除虚拟功能或停止使其成为虚拟它就可以工作。有任何想法吗?
还有什么工具或方法可以检查 vtable 吗?