目標是序列化和反序列化 C 類Mango 包含自訂資料類型的成員。
建議的實作包括以下函數:
<code class="cpp">std::vector<uint8_t> serialize(Mango const& Man); Mango deserialize(std::span<uint8_t const> data); void serialize_to_stream(std::ostream& os, Mango const& Man); void deserialize(std::istream& is, Mango& Man);</code>
自訂所有相關類型(包括ValType、FuntionMango 、MangoType 和Mango)都需要:
<code class="cpp">// Define `do_generate` and `do_parse` functions // for custom data types.</code>
<code class="cpp">void serialize_to_stream(std::ostream& os, Mango const& Man) { do_generate(std::ostreambuf_iterator<char>(os), Man); } void deserialize(std::istream& is, Mango& Man) { Man = {}; // clear it! std::istreambuf_iterator<char> f(is), l{}; if (!do_parse(f, l, Man)) throw std::runtime_error("deserialize"); }</code>
實例:
https://coliru.stacked-crooked.com/a/288829ec964a3ca9
以上是如何使用自訂資料類型序列化和反序列化 C 類?的詳細內容。更多資訊請關注PHP中文網其他相關文章!