简体   繁体   中英

how to specialize template member functions in template class?

For example:

template<unsigned number>
struct A
{
    template<class T>
    static void Fun()
    {}
};

And want to specialize A<1>::Fun()

template<>
A<1>::Fun<int>()
{
    /* some code here. */
}

doesn't work. How to do it? Thanks.

First of all, you forgot to specify the return type of the function ( void ). Secondly, you need to have two template<> : one because you are explicitly specializing the class template, and one because you are explicitly specializing its member function template.

Therefore, this is the correct syntax:

template<> // Because you are explicitly specializing the A class template
template<> // Because you are explicitly specializing the `Fun()` member template
void A<1>::Fun<int>()
{
    /* some code here. */
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM