繁体   English   中英

在 C++ 中使用 inheritance 的编译器错误

[英]Compiler errors using inheritance in C++

我是 C++ 的新手。 我编写了一个示例代码来说明问题并导致编译器错误。

class Quantifier;

class Node {
public:
    virtual void Match(/* args */) = 0;
};

class QuantifiableNode : public Node {
public:
    virtual void SetQuantifier(Quantifier *quantifier) = 0;
};

class NodeBase : public Node {
public:
    void Match() override {
        // Base behavior
    }
};

class QuantifiableNodeImpl : public NodeBase, // Needed to inherit base behavior
                             public QuantifiableNode // Needed to implement QuantifiableNode interface
{
public:
    void SetQuantifier(Quantifier *quantifier) override {}

    void Method() {
        this->Match();
    }
};

int main() {
    QuantifiableNodeImpl node;
    node.Match();
    return 0;
}

我收到这些错误:

main.cpp(27): error C2385: ambiguous access of 'Match'
main.cpp(27): note: could be the 'Match' in base 'NodeBase'
main.cpp(27): note: or could be the 'Match' in base 'Node'
main.cpp(32): error C2259: 'QuantifiableNodeImpl': cannot instantiate abstract class
main.cpp(20): note: see declaration of 'QuantifiableNodeImpl'
main.cpp(32): note: due to following members:
main.cpp(32): note: 'void Node::Match(void)': is abstract
main.cpp(5): note: see declaration of 'Node::Match'
main.cpp(33): error C2385: ambiguous access of 'Match'
main.cpp(33): note: could be the 'Match' in base 'NodeBase'
main.cpp(33): note: or could be the 'Match' in base 'Node'

据我了解,编译器无法编译此代码,因为 class QuantifiableNodeImpl继承 class NodeBase和接口QuantifiableNode两者都有一个方法MatchNodeBaseNode实现它, QuantifiableNodeNode继承抽象方法)。 我需要同时拥有NodeQuantifiableNode这两个接口,并在另一个代码中使用它们。 此外,我需要有NodeBase class 以分离基本功能(在我的真实代码中,我有许多NodeBase的衍生物)。

此外,class QuantifiableNodeImpl的 object 也无法创建,编译器说它有一个未实现的抽象Match方法。

所以我该怎么做? 希望得到您的帮助!

看来您对钻石 inheritance 并不完全熟悉。 QuantifiableNodeImpl有两个Node子对象,一个通过NodeBase ,一个通过QuantifiableNode 第二个Node子对象缺少QuantifiableNode::Match

看起来这可能不是故意的: QuantifiableNode真的应该是一个Node本身吗? QuantifiableNode::Match应该如何工作?

可能是Quantifiable更准确地建模为mixin

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM