涉及模板参数变通方法的模板参数

template argument involving template parameters workaround

本文关键字:参数 方法      更新时间:2023-10-16

我有以下部分专业化:

constexpr int NUM_ARGS = 3;
template <typename, typename, int> struct Dispatcher;
template <typename T, typename V>
struct Dispatcher<T, V, NUM_ARGS-1> {};

但现在我需要NUM_ARGS本身作为Dispatcher中的模板参数。但是

template <typename, typename, int, int> struct Dispatcher;
template <typename T, typename V, int NUM_ARGS>
struct Dispatcher<T, V, NUM_ARGS, NUM_ARGS-1> { ...

是非法的。那么,解决方法是什么呢?

对于Pradhan的解决方案,这种非法专业化的解决方案是什么?

template <int M, int N, typename... Args> struct Test;
template <int M, typename... Args>
struct Test<M, M-1, Args...> {};

其中甚至不允许使用默认模板参数?

虽然不能在专门化参数中对模板参数进行算术运算,但可以在类型参数中进行。用一个比问题中的例子更简单的例子来说明:

template <int M, int N, typename Specialization = void>
class Test
{
    public:
    void foo(){cout << "Primary template." << endl;}
};
template <int M, int N>
class Test<M, N, enable_if_t<N==M-1>>
{
    public:
    void foo(){cout << "Specialization." << endl;}
};
int main()
{
    Test<5,10>().foo();
    Test<5,4>().foo();
    return 0;
}

输出:

Primary template.
Specialization.

EDIT:为了允许可变参数,我们必须将Specialization保留为没有默认值的类型参数,并使用模板别名使接口更干净。

template <int M, int N, typename Specialization, typename... Rest>
class Test
{
    static_assert(std::is_same<Specialization, void>::value, "Don't use Test directly. Use TestHelper instead.");
    public:
    void foo(){cout << "Primary template." << endl;}
};
template <int M, int N, typename... Rest>
class Test<M, N, enable_if_t<N==M-1>, Rest...>
{
    public:
    void foo(){cout << "Specialization." << endl;}
};
template <int M, int N, typename... Rest>
using TestHelper = Test<M, N, void, Rest...>;
int main()
{
    TestHelper<5,10, int, double, char>().foo();
    TestHelper<5,4, int, double, char>().foo();
    return 0;
}

Coliru演示。