2
#include <iostream>

using namespace std;

class Base {
public:
virtual void some_func(int f1)
{
cout <<"Base is called: value is : " << f1 <<endl;
}
};

class Derived : public Base {
public:
virtual void some_func(float f1)
{
cout <<"Derived is called : value is : " << f1 <<endl;
}
};


int main()
{
int g =12;
float f1 = 23.5F;

Base *b2 = new Derived();
b2->some_func(g);
b2->some_func(f1);
return 0;

}

输出是:

Base is called: value is : 12
Base is called: value is : 23

为什么第二个调用b2->some_func(f1)调用Base类的函数,即使类中有一个带有浮点作为参数的版本Derived

4

2 回答 2

4
  1. 它实际上并没有被覆盖,因为它的参数没有相同的类型。
  2. 由于它没有被覆盖,因此您的指针Base只知道该int方法,因此它执行缩小转换(应该有一个警告)并调用Base::some_func(int).
于 2013-07-05T12:17:53.820 回答
2

您将重载与覆盖混淆了,对于覆盖,函数的签名必须保持不变。请再次检查c ++文档..希望这会有所帮助

于 2013-07-05T12:16:32.780 回答