首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ Builder >

模板有关问题

2012-03-06 
模板问题template typename Tclass AA{public:int iNum}class BB : public AABB{public:int iBB}

模板问题
template <typename T>
class AA
{
public:
int iNum;
};

class BB : public AA<BB>
{
public:
int iBB;
};
以上没有问题,但是,如果BB也是摸板类就不行了

template <typename TT>
class BB : public AA<BB>
{
public:
int iBB;
};

编译不过,该怎么写??

[解决办法]
template <typename TT>
class BB : public AA<BB<TT> >
{
public:
int iBB;
};

热点排行