我正在尝试使用 std::bind() 创建一个函数,该函数将调用虚函数的基类版本,而不是调用派生类的版本。
struct Base
{
virtual void foo() { cout << "Base\n"; }
};
struct Derived : public Base
{
virtual void foo() { cout << "Derived\n"; }
};
int main(int argc, const char * argv[])
{
Base* base = new Derived;
auto baseMethodHopefully = std::bind( &Base::foo, base );
baseMethodHopefully(); // Want call to Base::foo(), but get call to Derived::foo().
return 0;
}
我从其他地方了解到,您通常不能以这样的“反虚拟”方式调用基本函数。明显的例外是通用范式:
void Derived::bar() { Base::bar(); }
由于该表达式Base::bar()
在 Derived 的方法中被识别为“反虚拟”(在我所指的意义上),是否可以从 Derived的Base::bar()
方法之一中以所需的方式绑定到?例如:
void Derived::bar()
{
auto baseMethod = std::bind( &Base::foo, this );
baseMethod();
}
如果是这样,语法是什么?