迭代结构体和类成员
C 提供了各种机制来迭代结构体和类的成员。为此,您可以采用多种技术。
使用宏定义结构:
一种方法是使用 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>
通过此调整,您可以使用以下代码迭代字段:
<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 中。
以上是如何在 C 中迭代结构体和类成员?的详细内容。更多信息请关注PHP中文网其他相关文章!