我有一个类模板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>
and 和Z<int, N<int>>
andZ<int, M<int>>
都是有效的用例,我无法做任何事情来Z
转换为模板模板,并且Z<TX, TY>::bar(TX &)
当TY
类从N
. 有没有办法做到这一点?