简体   繁体   中英

Wrapping each type in a variadic template in a templated class

Given a variadic template Types... , I would like to store A<> for each of the types in the pack. This could be done in a tuple of A<> 's, but I'd need to programmatically derive the type of said tuple.

Is such a thing even possible in c++11/14/17?

template <class T> class A { };

template <class... Types>
class B
{
   // A tuple of A<>'s for each type in Types...
   std::tuple<A<Type1>, A<Type2>, ...> data;
};

Simply with:

template <class... Types>
class B
{
   std::tuple<A<Types>...> data;
};

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