类模板与模板类1.类模板:该类是一个模板,他代表的是:整个类家族的参数化描述。 templatetypename T//侧重
类模板与模板类
1.类模板:该类是一个模板,他代表的是:整个类家族的参数化描述。
template<typename T>//侧重T
class A{
};
2.模板类:通常被用在下面几个方面:
template<int>
class B{//侧重类B
};
作为类模板的同义词
从模板产生的类
具有一个template-id名称的类
类模板与模板类
1.类模板:该类是一个模板,他代表的是:整个类家族的参数化描述。
template<typename T>//侧重T
class A{
};
2.模板类:通常被用在下面几个方面:
template<int>
class B{//侧重类B
};
作为类模板的同义词
从模板产生的类
具有一个template-id名称的类