码迷,mamicode.com
首页 > 编程语言 > 详细

C++Template学习

时间:2021-03-31 12:19:34      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:fun   cte   tmp   pre   code   out   div   char   public   

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学习

标签:fun   cte   tmp   pre   code   out   div   char   public   

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

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