C は、構造体とクラスのメンバーを反復するためのさまざまなメソッドを提供し、内部要素の詳細な探索を可能にします。
テクニックの 1 つは、REFLECTABLE マクロの利用です。以下に示すように、構造体定義に REFLECTABLE を組み込むことにより、フィールドは問い合わせのためにアクセスできるようになります:
<code class="cpp">struct A { REFLECTABLE ( (int) a, (int) b, (int) c ) };</code>
このマクロを利用すると、各フィールドを走査してその値を出力できます:
<code class="cpp">struct print_visitor { template<class FieldData> void operator()(FieldData f) { std::cout << f.name() << "=" << f.get() << std::endl; } }; template<class T> void print_fields(T & x) { visit_each(x, print_visitor()); } A x; print_fields(x);</code>
あるいは、Boost.Fusion を使用して構造体を融合シーケンスとして適応させることもできます。以下に例を示します:
<code class="cpp">struct A { int a; int b; int c; }; BOOST_FUSION_ADAPT_STRUCT ( A, (int, a) (int, b) (int, c) )</code>
REFLECTABLE メソッドと同様に、フィールドを出力できます:
<code class="cpp">struct print_visitor { template<class Index, class C> void operator()(Index, C & c) { std::cout << boost::fusion::extension::struct_member_name<C, Index::value>::call() << "=" << boost:::fusion::at<Index>(c) << std::endl; } }; template<class C> void print_fields(C & c) { typedef boost::mpl::range_c<int,0, boost::fusion::result_of::size<C>::type::value> range; boost::mpl::for_each<range>(boost::bind<void>(print_visitor(), boost::ref(c), _1)); }</code>
以上がC で構造体とクラスのメンバーを反復処理するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。