1

これは私のコードです。class のインスタンスを作成するために使用さA::typeれる beintまたはその他のものを作成するにはどうすればよいですか?doubleB

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

3 に答える 3