我有一个子类,它派生自两个父类(一个公共,一个私有)。每个父类都有一个重载运算符*的函数。如果我在子类中使用此函数,则会出现错误(模糊函数),但是我想使用公共父级中的方法。
class ParentA
{
public:
ParentA operator*(const ParentA & other);
};
class ParentB
{
public:
ParentB operator*(const ParentB & other);
};
class Child : public ParentA, private ParentB
{
...
};
int main()
{
Child x,y;
x*y;
return 0;
}
我该如何解决这个问题?
非常感谢, 雷莫
答案 0 :(得分:1)
尝试编写子类,如下所示(未经测试):
class Child : public ParentA, private ParentB {
public:
using ParentA::operator*;
... /*same as before*/
};