鉴于我可以这样做:
template <class T>
struct foo {
typedef T type;
};
template <template <size_t> class B>
struct foo2 {
typedef B<0> type;
};
struct bar1 {};
template <size_t N = 1>
struct bar2 {};
// usage
foo<bar1>::type // ok, = bar1
foo<bar2<> >::type // ok, = bar2<1>
foo2<bar2>::type // ok, = bar2<0>
我可以部分专门化 foo 以接受未专门化的类参数 bar2 吗?像:
foo<bar2>::type // should give me bar2<0>
我在下面尝试了一些方法,但它不起作用:
// compile error
template <template <size_t> class B>
struct foo<B> {
typedef B<0> type;
};