简体   繁体   中英

How to specialize a given template for a template

Is it possible to specialize this template for any basic_string's?

template<class T> struct X {};

Since basic_string is a template itself, I know this would be a solution:

template <template <class, class, class> class T> struct X {}; template <> struct X<basic_string> {};

However, I would like to know if the language allows to preserve the first template definition, by specializing it somehow for basic_string's only.

Yes:

#include <string>

template <typename> struct X;

template <typename TChar, typename TTraits, typename TAlloc>
struct X<std::basic_string<TChar, TTraits, TAlloc>>
{
    // ...
};

Your primary template takes one type parameter, so every specialization must supply one type parameter for X , one way or another.

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