这是我的代码。如何使A::type
成为int
或double
或用于制作课程B
实例的其他内容?
template<class X>
class A
{
typedef "*****" type
........
.....
......
}
template<class Y>
class B
{
......
.......
....
}
int main()
{
B<int> x;
A<B<int> > y;
.....
....
....
}
答案 0 :(得分:3)
这样做。
template<class X>
class A
{
typedef typename X::type type;
};
template<class Y>
class B
{
public:
typedef Y type;
};
答案 1 :(得分:2)
也许是这样:
template <typename T>
struct B
{
typedef T type;
// ...
};
template <typename> struct A { /* ... */ };
typedef B<int> MyB;
int main()
{
MyB x;
A<MyB::type> y;
}
答案 2 :(得分:2)
也许这会有所帮助。
template <class T>
class B;
template <class T>
class A {
public:
typedef T type;
};
template <class T>
class A<B<T>> : public A<T> {};
template <class T> class B {};
int main()
{
A<B<int>>::type x;
}