我正在尝试用C ++编程,我的情况如下:
template<Class U>;
Class A<U>;
Class B;
我需要做那个代码:
A<A<B>> x;
但是我收到了错误:
error: template argument 1 is invalid
warning: >> operator will be treated as two right angle brackets in C++
我也尝试过:
A<(A<B>)> x;
但仍然无法奏效。我该如何管理?