您的位置:首页 > 编程语言 > C语言/C++

C++子类不能调用父类同名不同参函数

2013-01-18 14:51 375 查看
才知道这件事情,太土了……这样一比,objective-c 比C++ 又不知方便、好用多少!

如下代码:

// testSubclass.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>

class GrandFather
{
public:
virtual bool foo(int a) = 0;
virtual int foo(const std::string &s) = 0;
};

class Father : public GrandFather
{
public:
virtual bool foo(int a) { return false; }
virtual int foo(const std::string &s) { return 0; }
};

class Child: public Father
{
public:
virtual bool foo(int a) { return true; }
};

int _tmain(int argc, _TCHAR* argv[])
{
Child *c = new Child;
c->foo("yes");
return 0;
}


编译是通不过的,它会说 Child 没有接收 char * 型的 foo 函数,但事实上父类中有!

修改方法:

1. c->Father::foo("yes")

2. 把父类中的 int foo(const std::string& s) 改名为 int foo2(const std::string& s),然后 c->foo2("yes")

3. Child 继承 int foo(const std::string& s) { return __super::foo(s); }
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: