如何在cpp类中声明一个zeromq套接字

问题描述 投票:0回答:1

我正在尝试使用zmq创建一个通用节点,该节点将形成动态计算图,但是在类中zmq套接字的前向声明中出现错误。我想知道是否有人可以阐明这一点?该类的精简版本是;

node.hpp

/* 
 *  node.hpp
*/ 

#ifndef NODE_
#define NODE_

#include <iostream>
#include "zmq.hpp"

class Node
{
private:
    std::string name_;
    std::ostream& log_;
    zmq::context_t context_;
    zmq::socket_t subscriber_;
    zmq::socket_t publisher_;

public:
    Node(std::ostream& log, std::string name);
    void sendlog(std::string msg);
};

#endif // NODE_ 

node.cpp

/* 
 *  node.cpp
*/ 

#include <iostream>
#include <string>
#include "zmq.hpp"
#include "node.hpp"

Node::Node(std::ostream& log, std::string name): 
    log_(log),
    name_(name)
{
    sendlog(std::string("initialising ") + name_);

    zmq::context_t context_(1);
    zmq::socket_t subscriber_(context_, zmq::socket_type::sub);
    zmq::socket_t publisher_(context_, zmq::socket_type::pub);

    subscriber_.connect("ipc:///tmp/out.ipc");
    publisher_.connect("ipc:///tmp/in.ipc");

    sendlog(std::string("finished initialisation"));
}

void Node::sendlog(std::string msg)
{
    this->log_ << msg << std::endl;
}

我从g ++得到的错误

g++ main.cpp node.cpp -lzmq

node.cpp: In constructor ‘Node::Node(std::ostream&, std::__cxx11::string)’:
node.cpp:12:15: error: no matching function for call to ‘zmq::socket_t::socket_t()’
     name_(name)

但是当我查看zmq.hpp时,却看到了

namespace zmq
{
class socket_t : public detail::socket_base
...

我假设我以某种方式错误地执行了声明?我不太精通cpp,但是将其用作一个项目以重新开始学习,因此欢迎一般评论/文献参考。

c++ class zeromq forward-declaration
1个回答
0
投票

以下两个(私有)成员是通过默认(零参数)构造函数创建的:

zmq::socket_t subscriber_; zmq::socket_t publisher_;

但是,该构造函数不可用。如果要将其存储为成员,则需要一个指针并通过new对其进行初始化,或者在构造函数的初始化器列表中对其进行初始化。

© www.soinside.com 2019 - 2024. All rights reserved.