我有这两个课程:
class Foo
{
virtual void Bar2();
void Bar(){Bar2();};
}
class Foo2 : public Foo
{
void Bar2();
}
在 Foo 中调用 Bar() 函数会使用 Foo2 或 Foo 中的 Bar2 函数吗?我希望它使用 Foo2 的。
我有这两个课程:
class Foo
{
virtual void Bar2();
void Bar(){Bar2();};
}
class Foo2 : public Foo
{
void Bar2();
}
在 Foo 中调用 Bar() 函数会使用 Foo2 或 Foo 中的 Bar2 函数吗?我希望它使用 Foo2 的。