これは私のコードです。class のインスタンスを作成するために使用さA::type
れる beint
またはその他のものを作成するにはどうすればよいですか?double
B
template<class X>
class A
{
typedef "*****" type
........
.....
......
}
template<class Y>
class B
{
......
.......
....
}
int main()
{
B<int> x;
A<B<int> > y;
.....
....
....
}