如果一个类同时继承的两个类都定义了某一个函数会怎样呢

Posted lijianming180

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如果一个类同时继承的两个类都定义了某一个函数会怎样呢相关的知识,希望对你有一定的参考价值。

如果一个类同时继承的两个类都定义了某一个函数会怎样呢 | Code4Fun 盒子

入下面所示:类C同时继承了AB,并且两个都定义了相同的函数,如果这时候编译的话会得到错误.

1
2
3
4
5
6
7
8
9
10
testhir.cpp: In function ‘int main(int, const char**)’:
testhir.cpp:26:7: error: request for member ‘printR’ is ambiguous
c.printR();
^~~~~~
testhir.cpp:5:14: note: candidates are: void A::printR()
void printR()
^~~~~~
testhir.cpp:13:14: note: void B::printR()
void printR()
^~~~~~
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <iostream>
class A {
public:
void printR()
{
std::cout << "in A" << std::endl;
}
};
class B {
public:
void printR()
std::cout << "in B" << std::endl;
}
};
class C :B,A {
public:
};
int main(int argc, const char** argv) {
C c;
c.printR();
return 0;
}

如果在C中也实现了相同的函数的话,就可以正常编译获得结果:in C

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <iostream>
class A {
public:
void printR()
{
std::cout << "in A" << std::endl;
}
};
class B {
public:
void printR()
{
std::cout << "in B" << std::endl;
}
};
class C :B,A {
public:
void printR()
{
std::cout << "in C" << std::endl;
}
};
int main(int argc, const char** argv) {
C c;
c.printR();
return 0;
}

呼呼呼山(http://code4fun.me)
2019-05-24 15:40:15

以上是关于如果一个类同时继承的两个类都定义了某一个函数会怎样呢的主要内容,如果未能解决你的问题,请参考以下文章

C++的=重载问题,怎样为两个有相同成员的类赋值

Java中怎样获取一个类的所有子类?

JAVA基础-内部类

C++中子类从基类都继承啥?

定义一个类,并且是继承类

继承,虚继承机制