另一个类模板C ++

时间:2016-12-05 08:15:57

标签: c++ class templates data-structures

我正在尝试用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;

但仍然无法奏效。我该如何管理?

0 个答案:

没有答案