結構體和類別成員的迭代探索
在 C 中,遍歷結構體或類別並發現其所有成員是否可行?考慮以下範例:
<code class="cpp">struct a { int a; int b; int c; }; class b { public: int a; int b; private: int c; };</code>
是否可以迭代這些結構並列印語句,例如「結構a 具有名為a、b、c 的int」或「類別b 具有名為a、b、c 的int, c"?
解
要實現此目的,您可以使用巨集或將結構體調整為融合序列。
方法1 : REFLECTABLE Macro
使用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>
方法2:融合序列適配
將結構體適配為融合序列:
<code class="cpp">struct A { int a; int b; int c; }; BOOST_FUSION_ADAPT_STRUCT ( A, (int, a) (int, b) (int, c) )</code>
使用此方法列印欄位:
<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中文網其他相關文章!