码迷,mamicode.com
首页 > 其他好文 > 详细

template(1)

时间:2014-05-08 09:50:44      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   width   int   http   

#include<iostream>
#include<string>
template<typename T>
inline T const& max(T const& a,T const &b)
{
//如果a<b,那么返回a
return a<b?b:a;
}
int main()
{
int i=42;
std::cout<<"max(7,i):"<<::max(7,i)<<std::endl;

double f1=3.4;
double f2=-6.7;
std::cout<<"max(f1,f2):"<<::max(f1,f2)<<std::endl;
    std::string s1="mathematics";
std::string s2="math";
std::cout<<"max(s1,s2):"<<::max(s1,s2)<<std::endl;
return 0;
}
/*
注意:在这个例子值哦功能类型T需要支持operator<,因为a和b就是靠这个运算符比较大小的
*/

bubuko.com,布布扣

template(1),布布扣,bubuko.com

template(1)

标签:style   blog   color   width   int   http   

原文地址:http://www.cnblogs.com/jianfengyun/p/3714592.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!