Home > Backend Development > C++ > body text

How to iterate through struct and class members in C ?

Mary-Kate Olsen
Release: 2024-10-30 06:22:28
Original
682 people have browsed it

 How to iterate through struct and class members in C  ?

Iterating Through Struct and Class Members

C provides various mechanisms to iterate through the members of structs and classes. To achieve this, you can employ several techniques.

Defining the Struct with a Macro:

One approach is to use the REFLECTABLE macro, as seen in the following example:

<code class="cpp">struct A
{
    REFLECTABLE
    (
        (int) a,
        (int) b,
        (int) c
    )
};</code>
Copy after login

By using this macro, you can conveniently iterate over the fields and print their values as follows:

<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>
Copy after login

Adapting the Struct as a Fusion Sequence:

Another option is to adapt the struct as a Boost.Fusion sequence. Consider the following example:

<code class="cpp">struct A
{
    int a;
    int b;
    int c;
};

BOOST_FUSION_ADAPT_STRUCT
(
    A,
    (int, a)
    (int, b)
    (int, c)
)</code>
Copy after login

With this adaptation, you can iterate over the fields using the following 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>
Copy after login

These techniques allow you to effectively iterate through struct and class members in C .

The above is the detailed content of How to iterate through struct and class members in C ?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!