模板类错误的复制构造函数被调用

时间:2012-06-05 08:35:51

标签: c++ templates

解决方案

为了避免std :: auto_ptr的问题,可以切换到boost :: shard_ptr或C ++ 11 std :: shared_ptr。

我收到一个错误,即在我的模板类中调用了错误的复制构造函数:

MPINetworkCode.hpp: error: no matching function for call to 
MPILib::MPINode<double>::MPINode(MPILib::MPINode<double>)

MPINode.hpp: note: candidate is: 
MPILib::MPINode<double>::MPINode(MPILib::MPINode<double>&)

以下是导致此错误的代码行。

int MPINetwork<WeightValue>::AddNode(const AlgorithmInterface<WeightValue>& alg,
    NodeType nodeType) {

    MPINode<WeightValue> node = MPINode<WeightValue>(alg, nodeType, 
          tempNodeId, _nodeDistribution, _localNodes);
    _localNodes.insert(std::make_pair(tempNodeId, node));
}

此代码有什么问题,为什么调用了错误的拷贝构造函数?在没有模板的这个类的先前版本中,这工作正常。

这里是相关类的标题。模板实现位于头文件中。

这里是MPINetwork:

template <class WeightValue>
class MPINetwork: private boost::noncopyable {

public:

    explicit MPINetwork();

    ~MPINetwork();

    /**
     * Adds a new node to the network
     * @param alg The Algorithm of the actual node
     * @param nodeType The Type of the Node
     * @return returns the NodeId of the generated node
     */
    int AddNode(const AlgorithmInterface<WeightValue>& alg, NodeType nodeType);

//lot of code

};

第二个MPINode,应该调用默认的复制构造函数:

template <class Weight>
class MPINode {
public:
    /**
     * Constructor
     * @param algorithm Algorithm the algorithm the node should contain
     * @param nodeType NodeType the type of the node
     * @param nodeId NodeId the id of the node
     * @param nodeDistribution The Node Distribution.
     * @param localNode The local nodes of this processor
     */
    explicit MPINode(const AlgorithmInterface<Weight>& algorithm, NodeType nodeType,
            NodeId nodeId,
            const boost::shared_ptr<utilities::NodeDistributionInterface>& nodeDistribution,
            const std::map<NodeId, MPINode<Weight> >& localNode);

    virtual ~MPINode();

    Time Evolve(Time time);

    void ConfigureSimulationRun(const SimulationRunParameter& simParam);

    void addPrecursor(NodeId nodeId, const Weight& weight);

    void addSuccessor(NodeId nodeId);

    NodeState getState() const;

    void setState(NodeState state);

    void receiveData();

    void sendOwnState();

private:

    void waitAll();

    std::vector<NodeId> _precursors;

    std::vector<Weight> _weights;

    std::vector<NodeId> _successors;

    std::auto_ptr<AlgorithmInterface<Weight> > _algorithm;

    NodeType _nodeType;

    NodeId _nodeId;

    const std::map<NodeId, MPINode>& _refLocalNodes;

    boost::shared_ptr<utilities::NodeDistributionInterface> _nodeDistribution;

    NodeState _state;

    std::vector<NodeState> _precursorStates;

    std::vector<boost::mpi::request> _mpiStatus;
};

template<class Weight>
MPINode<Weight>::MPINode(const AlgorithmInterface<Weight>& algorithm, NodeType nodeType,
        NodeId nodeId,
        const boost::shared_ptr<utilities::NodeDistributionInterface>& nodeDistribution,
        const std::map<NodeId, MPINode>& localNode) :
        _algorithm(algorithm.Clone()), _nodeType(nodeType), _nodeId(nodeId), _nodeDistribution(
                nodeDistribution), _refLocalNodes(localNode) {

}

3 个答案:

答案 0 :(得分:5)

您的问题主要是由此成员引起的:

std::auto_ptr<AlgorithmInterface<Weight> > _algorithm;

std::auto_ptr的复制构造函数并未真正复制,它会转移所有权。因此,它需要对其参数进行非const引用,而不是const引用。

这意味着当编译器为MPINode特化生成复制构造函数时,它无法生成一个复制构造函数,它将const引用带到另一个MPINode,它只能生成一个带有非const引用。

在此初始化中,临时MPINode<WeightValue>无法绑定到生成的复制构造函数所需的非const引用参数。

MPINode<WeightValue> node = MPINode<WeightValue>(alg, nodeType, 
      tempNodeId, _nodeDistribution, _localNodes);

如何解决这个问题取决于您的设计。可能是提供一个用户定义的复制构造函数来获取const引用并正确克隆_algorithm成员是正确的方法。

答案 1 :(得分:2)

您的编译器似乎正在为您生成一个接受类型为MPILib::MPINode<double>&的参数的复制构造函数。尝试定义自己的类型为const MPILib::MPINode<double>&的复制构造函数。 node中变量AddNode的初始化正在调用复制构造函数,编译器不允许您将临时函数传递给需要可修改引用的函数。

答案 2 :(得分:1)

因为你有一个std::auto_ptr<AlgorithmInterface<Weight> >(没有&#34;普通&#34;复制构造函数采用const-reference,但不幸的是有一个反常的参与者)作为数据成员,编译器无法生成采用const-reference的默认复制构造函数。在这种情况下,当可能时,编译器生成采用非const引用的那个。您的代码尝试调用此代码,但代码失败。

你应该怎么做?

禁用它 NOW ,作为生成的&#34;复制&#34;构造函数实际上从其参数中窃取了数据成员。然后,根据需要使用行为实现自己的复制构造函数。