Wie bekomme ich den N-Typ von variadischen Vorlagen Vorlagen? Zum BeispielHolen Sie sich die N-Typ von variadischen Vorlagenvorlagen?
template<typename... Args>
class MyClass
{
Args[0] mA; // This is wrong. How to get the type?
};
Wie bekomme ich den N-Typ von variadischen Vorlagen Vorlagen? Zum BeispielHolen Sie sich die N-Typ von variadischen Vorlagenvorlagen?
template<typename... Args>
class MyClass
{
Args[0] mA; // This is wrong. How to get the type?
};
können Sie std::tuple
verwenden:
#include<tuple>
template<typename... Args>
class MyClass
{
typename std::tuple_element<0, std::tuple<Args...> >::type mA;
};
Wenn Sie etwas wollen, ohne std::tuple
diese
template<std::size_t N, typename T, typename... types>
struct get_Nth_type
{
using type = typename get_Nth_type<N - 1, types...>::type;
};
template<typename T, typename... types>
struct get_Nth_type<0, T, types...>
{
using type = T;
};
als
template<std::size_t N, typename... Args>
using get = typename get_Nth_type<N, Args...>::type;
template<typename... Args>
class MyClass
{
get<0, Args...> mA;
};
Version mit 'std :: tuple_element <> :: type" ist komfortabler. – 23W
Überprüfen Sie die std :: tuple funktioniert Implementierung (u Sing Vererbung gemischt mit Templates) – lucasmrod