目的は、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 中国語 Web サイトの他の関連記事を参照してください。