我有很多使用相同模板参数列表的C ++类
template<typename T, typename Index, typename Bool, typename Data, Index n_x, Index n_u, Index n_c, Index n_w>
class A {
...
};
template<typename T, typename Index, typename Bool, typename Data, Index n_x, Index n_u, Index n_c, Index n_w>
class B {
...
};
template<typename T, typename Index, typename Bool, typename Data, Index n_x, Index n_u, Index n_c, Index n_w>
class C {
...
};
你明白了。然后我像
一样实例化它们A<T, Index, Bool, Data, n_x, n_u, n_c, n_w> a;
B<T, Index, Bool, Data, n_x, n_u, n_c, n_w> b;
C<T, Index, Bool, Data, n_x, n_u, n_c, n_w> c;
有没有办法以某种方式为这个模板参数包创建一个别名,这样我就不必继续重新输入参数列表了?
我有这样的想法......
using Params = T, Index, Bool, Data, n_x, n_u, n_c, n_w;
A<Params> a;
B<Params> b;
C<Params> c;
我意识到我可以创建一个单独的类,它只定义类型,并使用它。但我想知道是否有办法在没有定义新类的情况下这样做。
编辑
我不想使用宏。
我也不想使用默认值,因为这需要确保默认值在一堆文件中是统一的。我意识到我可以定义一个新的默认标头,并将其包含在所有文件中,但这看起来好像编程错误。
答案 0 :(得分:3)
不完全是你问的但没有那么不同......
但需要一点工作。
您可以使用结构foo
来解决,并使用双层模板管理。
template <typename T, typename Index, typename Bool, typename Data,
Index I1, Index I2, Index I3, Index I4>
struct foo
{
template <template <typename, typename X, typename, typename, X, X, X, X>
class Cont>
using type = Cont<T, Index, Bool, Data, I1, I2, I3, I4>;
};
第一层,即结构层,包含您要修复的类型/值(在您的示例中为T, Index, Bool, Data, n_x, n_u, n_c, n_w
)。
第二层,using
图层,在您的示例中包含可变模板元素(A
,B
和C
。
您还可以添加using
别名foot_t
以简化使用
template <template <typename, typename X, typename, typename, X, X, X, X>
class Cont, typename C>
using foo_t = typename C::template type<Cont>;
现在,您可以使用using
using f = foo<T, Index, Bool, Data, n_x, n_u, n_c, n_w>;
并使用foo_t
foo_t<A, f> a;
foo_t<B, f> b;
foo_t<C, f> c;
以下是一个完整的工作示例
#include <vector>
#include <iostream>
template <typename T, typename Index, typename Bool, typename Data,
Index n_x, Index n_u, Index n_c, Index n_w>
class A { };
template <typename T, typename Index, typename Bool, typename Data,
Index n_x, Index n_u, Index n_c, Index n_w>
class B { };
template <typename T, typename Index, typename Bool, typename Data,
Index n_x, Index n_u, Index n_c, Index n_w>
class C { };
template <typename T, typename Index, typename Bool, typename Data,
Index I1, Index I2, Index I3, Index I4>
struct foo
{
template <template <typename, typename X, typename, typename, X, X, X, X>
class Cont>
using type = Cont<T, Index, Bool, Data, I1, I2, I3, I4>;
};
template <template <typename, typename X, typename, typename, X, X, X, X>
class Cont, typename C>
using foo_t = typename C::template type<Cont>;
int main ()
{
using T = float;
using Index = std::size_t;
using Bool = bool;
using Data = std::vector<std::string>;
constexpr std::size_t n_x { 0U };
constexpr std::size_t n_u { 1U };
constexpr std::size_t n_c { 2U };
constexpr std::size_t n_w { 3U };
using f = foo<T, Index, Bool, Data, n_x, n_u, n_c, n_w>;
foo_t<A, f> a;
foo_t<B, f> b;
foo_t<C, f> c;
static_assert( std::is_same<decltype(a),
A<T, Index, Bool, Data, n_x, n_u, n_c, n_w>>{}, "!" );
static_assert( std::is_same<decltype(b),
B<T, Index, Bool, Data, n_x, n_u, n_c, n_w>>{}, "!" );
static_assert( std::is_same<decltype(c),
C<T, Index, Bool, Data, n_x, n_u, n_c, n_w>>{}, "!" );
}
答案 1 :(得分:0)
您可以使用定义的别名(不是完美的,但是简单的解决方案)来代替别名,并且可以使用。
#define PARAMS T, Index, Bool, Data, n_x, n_u, n_c, n_w
A<PARAMS> a;
B<PARAMS> b;
C<PARAMS> c;
注意:在定义的末尾没有;
。