- 1、本文档共7页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Template
Templates
定义一个模板使用的关键字:class和typename。
在定义作为模板的时候:class和typename,作用是一样的。
一 函数模板
1 定义方式
template class identifier function_declaration;template typename identifier function_declaration;
2 Example
template class T
T GetMax (T a, T b)
{
T result;
result = (ab)? a : b;
return (result);
}
3 使用方法
function_name type (parameters);
int x,y;
GetMax int (x,y);
对于内部类型,通常是可以无需制定具体的类型,编译器会自动识别,
而是写成:
int x,y;
GetMax(x,y); //x,y为相同的类型
int x;
long y;
GetMax(x,y); //x,y为不相同的类型 报错 两种不同的内部类型
必须:
template class T, class U
T GetMin (T a, U b)
{
return (ab?a:b);
}
int i,j;
long l;
i = GetMinint,long (j,l); //或者i = GetMin (j,l);
二 Class Template
通常是使用模板作为类成员变量的类型
1 Example:
template class T
class mypair
{
T values [2];
public:
mypair (T first, T second) //内联函数
{
values[0]=first; values[1]=second;
}
};
mypairint myobject (115, 36); //这样使用
mypairdouble myfloats (3.0, 2.18);
2 成员函数为非内联函数
template class T
class mypair {
T a, b;
public:
mypair (T first, T second)
{a=first; b=second;}
T getmax ();
};
template class T //增加此声明
T mypairT::getmax ()
{
T retval;
retval = ab? a : b;
return retval;
}
int main () {
mypair int myobject (100, 75);
cout myobject.getmax();
return 0;
}
模板类成员函数外部定义方法:
template class T
T mypairT::getmax ()
三 模板特化 Template Specialization
1 将模板类转化为特定类型相关的类
// class template:
template class T
class mycontainer
{
T element;
public:
mycontainer (T arg) {element=arg;}
T increase () {return ++element;}
};
// class template specialization:
template //
class mycontainer char //将其特例化为char型
{
char element;
public:
mycontainer (char arg) {element=arg;}
char uppercase ()
{
if ((element=a)(element=z))
element+=A-a;
return element;
}
};
int main () {
mycontainerint myint (7);
mycontainerchar mychar (j);
cout myint.increase() endl;
cout mychar.uppercase() endl;
return 0;
}
template class T class mycontainer { ... }; //模板类
template class my
文档评论(0)