如何确定作为对象传递给另一个类的模板类的数据类型

时间:2013-04-25 23:56:37

标签: c++

这是我的代码。如何使A::type成为intdouble或用于制作课程B实例的其他内容?

template<class X>
class A
{
typedef "*****" type
........
.....
......
}
template<class Y>
class B
{
......
.......
....
}
int main()
{
B<int> x;
A<B<int> > y;
.....
....
....
}

3 个答案:

答案 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;
}