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

函数模板特化

时间:2016-12-03 23:32:50      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:strcmp   ret   code   str   char   typename   iostream   class   max   

#include <iostream>
template <typename T>
T max(T x, T y)
{
    return x > y ? x : y;
}

//函数模板特化
template <>
const char* max(const char* x, const char* y){
    return strcmp(x, y) > 0 ? x : y;
}

int main(){
    std::cout << max(1, 2);
    std::cout << max("hello", "world");
    return 0;
}

 

函数模板特化

标签:strcmp   ret   code   str   char   typename   iostream   class   max   

原文地址:http://www.cnblogs.com/zzyoucan/p/6129654.html

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