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()); }</code>
或者,您可以使用BOOST_FUSION_ADAPT_STRUCT 將結構調整為融合序列:
<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>
以上是如何使用巨集和 Fusion 庫迭代並列印 C 中結構成員的值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!