首页 > 编程语言 > 详细

C++Template学习

时间:2021-03-30 21:59:08      阅读:26      评论:0      收藏:0      [点我收藏+]
template<typename T>
void funcTmp(T a, T b)
{
    cout << "this is yiban" << endl;
}


template<>
void funcTmp(const char* a, const char* b)
{
    cout << "this is char*" << endl;
}


template<typename T>
class CTem 
{
public:
    void func()
    {
        cout << "this is usural func" << endl;

    }
};

void CTem<char>::func()
{
    cout << "this is char func" << endl;
}

template<>
class CTem<int>
{
public:
    void func()
    {
        cout << "this is int func" << endl;

    }
};

 

C++Template学习

原文:https://www.cnblogs.com/weiyouqing/p/14598400.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!