结构体和类成员的迭代探索
在 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中文网其他相关文章!