タプルまたは可変個引数テンプレート パラメーターからの配列初期化子の作成
可変個引数テンプレートは、配列の初期化における自動オフセット計算の必要性に対するソリューションを提供します。各要素を識別子とそのサイズとして表すことにより、オフセットの計算を実行するシーケンスを作成できます。
エントリを保持するためにレイアウト構造が使用されます。
<code class="cpp">template<std::size_t offset, typename Key, typename... Entries> struct LayoutHelper { typedef std::tuple<> type; }; template<typename Key, typename... Entries> struct Layout:LayoutHelper<0, Key, Entries...> {};</code>
各エントリ識別子とタイプまたはサイズがあります:
<code class="cpp">template<typename Key, Key identifier, typename Data> struct Entry {};</code>
処理済みエントリを作成するには、概念を拡張します:
<code class="cpp">template<std::size_t offset, typename Key, Key id0, typename D0, typename... Entries> struct LayoutHelper<offset, Key, Entry<Key, id0, D0>, Entries...> { typedef typename prepend < ProcessedEntry< Key, id0, D0, offset > , typename LayoutHelper<offset+sizeof(D0), Key, Entries...>::type > type; };</code>
使用法は次のようになります:
<code class="cpp">Layout< FooEnum, Entry< FooEnum, eFoo, char[10] >, Entry< FooEnum, eFoo2, double > > layout;</code>
タプルの前に要素を追加する prepend 実装を見つけた後、Layout
以上がC で可変個引数テンプレートを使用して自動配列オフセットを計算するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。