gpt4 book ai didi

c++ - 在 C++ 中序列化,在 Python 中反序列化?

转载 作者:IT王子 更新时间:2023-10-29 00:33:02 25 4
gpt4 key购买 nike

我有一个 C++ 应用程序,它使用 Google Protobuf 像这样序列化一个结构

int len = mdd.ByteSize();
char* buf = (char *)malloc(len);
mdd.SerializeToArray(buf, len);

我想从 python 中反序列化它:

import  marketdata_pb2
...
md = marketdata_pb2.MarketDataDepth()
#what goes here? I don't see a marketdata_pb2.parsefromarray()

最佳答案

您正在寻找 md.ParseFromString(some_string_of_bytes)。在 Python 2.x 中,“一些字节串”是 str

https://developers.google.com/protocol-buffers/docs/pythontutorial

关于c++ - 在 C++ 中序列化,在 Python 中反序列化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12453105/

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