gpt4 book ai didi

C++ 在命名管道中发送对象

转载 作者:行者123 更新时间:2023-11-30 03:42:30 26 4
gpt4 key购买 nike

<分区>

我试图通过命名管道发送一个对象,但是我不明白如何序列化我的对象:

class Order {
public:
void addFile(std::string const &file);
void setType(Parser::Information const &type);
std::list<std::string> getFileList() const;
Parser::Information getType() const;
void clear();

private:
std::vector<std::string> fileList;
Parser::Information type;
};

我已经设法让我的命名管道与基本数据类型一起工作,但是,我不明白如何发送和接收一个完整的对象(不使用 boost 序列化)

我试图将对象的数据放在一个结构中,但我没有设法通过命名管道发送它......可能是因为 vector

有人可以和我分享他的知识吗

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com