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中文网其他相关文章!