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

函数模板示例(二) 全特化示例

时间:2015-04-22 23:38:52      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:

函数的定义function2.h:

#ifndef FUNCTION2_H
#define FUNCTION2_H

#include <string>
#include <cstring>
#include <iostream>

template <typename T>
T myMax(const T p1, const T p2)
{
    std::cout << "default func" << std::endl;
    return p1 < p2 ? p2 : p1;
}

template <>
const char* myMax(const char* str1, const char* str2)
{
    std::cout << "char* func" << std::endl;
    return (std::strcmp(str1, str2) < 0) ? str2 : str1;
}


#endif // FUNCTION2_H

 

测试文件main.cpp:

#include <iostream>
#include "function2.h"

using namespace std;

int main()
{
    cout << myMax(20, 30) << endl;
    cout << myMax("Hello", "World") << endl;

    return 0;
}

 

结果:

技术分享

函数模板示例(二) 全特化示例

标签:

原文地址:http://www.cnblogs.com/AmitX-moten/p/4448907.html

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