typename参数的模板特化是特定模板的任何实例化

时间:2012-06-13 05:00:30

标签: c++ templates template-specialization boost-mpl template-templates

我有一个类模板Z,当我传递一个特定模板N的任何实例化类型时,我想要专门化它:

struct L {
    template <typename S> void foo(S &) {/*...*/}
};

template <class T>
struct M {
    template <typename S> void foo(S &) {/*...*/}
};

template <class T>
struct N {
    template <typename S> void foo(S &) {/*...*/}
};

// I'd like to specialize this for TY==N<anything>
template <typename TX, typename TY>
struct Z {
    void bar(TX &tx) { /*...*/ ty->foo(tx); /*...*/ }
    TY *ty;
};

由于Z<int, L>Z<int, N<int>>以及Z<int, M<int>>都是有效的用例,我无法做任何事情,就像将Z转换为模板模板一样当Z<TX, TY>::bar(TX &)是从TY构建的类时,N可能会降低引人注目的复杂性。有没有办法实现这个目标?

1 个答案:

答案 0 :(得分:1)

这应该影响你想要的专业化:

template <typename TX, typename ANY>
struct Z< TX, N<ANY> > {
    // ...
};
当第一个参数为Z时,

TX会被专门化,第二个参数为N<ANY>。快速说明:

template <typename A> struct N { A a; };

template <typename TX, typename TY>
struct Z { Z () { std::cout << "not special" << std::endl; } };

template <typename TX, typename ANY>
struct Z< TX, N<ANY> > { Z () { std::cout << "special" << std::endl; } };

int main ()
{
    Z<int, int> z1;
    Z<int, N<int> > z2;
}

输出结果:

not special
special