迭代结构体和类成员
在 C 中,可以迭代结构体或类的成员来检索它们的名称和价值观。以下是实现此目的的几种方法:
使用宏
REFLECTABLE 宏可用于定义允许自省的结构。该宏将结构体的成员定义为以逗号分隔的类型名称对列表。例如:
struct A
{
REFLECTABLE
(
(int) a,
(int) b,
(int) c
)
};
定义结构体后,您可以使用访问者函数迭代其成员并打印它们的名称和值:
struct print_visitor
{
template
void operator()(FieldData f)
{
std::cout
void print_fields(T & x)
{
visit_each(x, print_visitor());
}
A x;
print_fields(x);
将结构调整为融合序列
另一种方法是使用 BOOST_FUSION_ADAPT_STRUCT 宏将结构调整为融合序列。该宏将结构成员定义为具有相应类型和值的元素序列。例如:
struct A
{
int a;
int b;
int c;
};
BOOST_FUSION_ADAPT_STRUCT
(
A,
(int, a)
(int, b)
(int, c)
)
调整结构后,您可以使用范围循环来迭代成员并打印它们的名称和值:
struct print_visitor
{
template
void operator()(Index, C & c)
{
std::cout ::call()
(c)
void print_fields(C & c)
{
typedef boost::mpl::range_c::type::value> range;
boost::mpl::for_each(boost::bind(print_visitor(), boost::ref(c), _1));
}
这两种方法都允许您内省结构和类,在运行时提供对其成员及其值的访问。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3