C 提供了各種方法來迭代結構體和類別的成員,從而能夠深入探索它們的內部元素。
一種技術涉及利用 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中文網其他相關文章!