我有以下测试程序
#include<iostream>
using namespace std;
class Faculty {
// data members of Faculty
public:
Faculty(int x) {
cout<<"Faculty::Faculty(int ) called"<< endl;
}
void test() {
cout<<"Faculty::test called" << endl;
}
};
class Student {
// data members of Student
public:
Student(int x) {
cout<<"Student::Student(int ) called"<< endl;
}
void test() {
cout<<"Student::test called" << endl;
}
};
class TA : virtual public Faculty, virtual public Student {
public:
TA(int x):Student(x), Faculty(x) {
cout<<"TA::TA(int ) called"<< endl;
}
};
int main() {
TA ta1(30);
ta1.test();
}
编译期间出现错误
8be257447d8c26ef785b1a60f2884a.cpp: In function 'int main()':
748be257447d8c26ef785b1a60f2884a.cpp:36:6: error: request for member 'test' is ambiguous
ta1.test();
^
748be257447d8c26ef785b1a60f2884a.cpp:22:7: note: candidates are: void Student::test()
void test() {
^
748be257447d8c26ef785b1a60f2884a.cpp:11:7: note: void Faculty::test()
void test() {
^
即使我在这里使用虚拟继承。任何解决方案?
答案 0 :(得分:2)
此处不需要virtual
个关键字,类Student
和Faculty
与通用类的继承无关。
如果您希望在TA
中使用特定方法,可以将using Student::test;
或using Faculty::test;
放在TA
类声明中。
我希望这个例子出于纯粹的教育目的,因为如果它被用于/计划用于实际应用 - 它是设计出现问题的迹象:)< / p>
答案 1 :(得分:0)
您的test()
类中只有两个TA
方法,一个继承自Faculty
,另一个来自Student
,编译器正确通知您它不能决定你要打电话给哪一个。
您需要通过明确说明要调用的方法来解决此问题:
TA ta1(30);
ta1.Faculty::test();
或如何处理对象(这意味着要调用哪个方法):
((Faculty &)ta1).test();