Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 ZeroMQ 中通过 Socket 发送对象?
我在文档中知道,它说它只接受字符串。
但是,您实际上将如何传递对象?有没有解决的办法?
如果你的对象是一个多维数组,你可以制作一个 json 编码的字符串:
objString = json_encode(obj);
推动绳子,并用你的拉拔器解码:
obj = json_decode(obj);