"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How can I access the argument types of a function pointer within a variadic template class?

How can I access the argument types of a function pointer within a variadic template class?

Published on 2024-11-21
Browse:837

How can I access the argument types of a function pointer within a variadic template class?

Accessing Function Pointer Argument Types in Variadic Template Class

This problem arises from a previous query regarding creating a generic functor for functions with arbitrary argument lists. The given functor class, Foo, allows one to invoke a function pointer with any number of arguments. However, the task now is to extract the argument types from the function pointer within the Foo constructor.

In defining the Foo class, the argument types are encapsulated as ARGS... in the constructor's function pointer declaration. While the arguments' values are unavailable at construction time, their types are accessible within the function pointer itself.

To uncover these argument types, one can leverage the function_traits class:

template 
struct function_traits;  

template>
{
    // Number of arguments
    static const size_t nargs = sizeof...(Args);

    // Return type
    typedef R result_type;

    // Argument types at specified index
    template <size_t i>
    struct arg
    {
        typedef typename std::tuple_element<i, std::tuple<Args...>>::type type;
    };
};

Within the Foo constructor, one can access these argument types using function_traits as follows:

template

By employing function_traits, the argument types can be extracted and leveraged within the Foo class, enabling sophisticated operations based on the function's signature.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3