作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在学习 C++ 中的虚函数和虚表。但是,我不明白为什么需要动态绑定(bind)。编译器是否没有所有信息来确定函数调用是针对派生函数还是基函数,例如此处:
class Base1 {
public : virtual void foo()
{ cout << " Base foo \n"; }
};
class Base2 {
public : virtual void foo()
{ cout << " Base2 foo \n"; }
};
class derived : public base1, base 2 {
public : virtual void foo()
{ cout << " derived foo \n"; }
}
int main()
{
derived d;
Base2 *p = &d;
p->foo(); // why can't the compiler figure out that this
// is a function call to the derived function
// foo at compile time?
return 0;
}
最佳答案
why cant compile figure that this is a function call to derived function foo during compile runtime itself?
可以。一些编译器会将该调用转换为静态绑定(bind)。
还有其他情况下编译器必须使用动态绑定(bind)。
在这个函数中应该调用哪个 foo()
?
void function( Base* p )
{
p->foo();
}
无法确定*。必须使用动态绑定(bind)。
*编辑:根据我提供的信息。 :)
关于C++ 多态性 : Why is static binding impossible even when the type is obvious,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15147514/
我是一名优秀的程序员,十分优秀!