1. 程式人生 > 程式設計 >C++ 類模板、函式模板全特化、偏特化的使用

C++ 類模板、函式模板全特化、偏特化的使用

一、類模板全特化、偏特化

#pragma once
#include <iostream>
#include <map>
 
template <typename T,typename U>
class TC
{
public:
 TC() 
 {
 std::cout << "泛化版本建構函式" << std::endl;
 }
 void funtest()
 {
 std::cout << "泛化版本成員函式" << std::endl;
 }
};
 
template<>
class TC<int,int>
{
public:
 TC()
 {
 std::cout << "全特化版本建構函式" << std::endl;
 }
 void funtest()
 {
 std::cout << "全特化版本成員函式" << std::endl;
 }
};
 
template<>
void TC<double,double>::funtest()
{
 std::cout << "全特化版本函式" << std::endl;
 
}

main.cpp

#include <iostream>
#include "template.h"
using namespace std;
 
int main()
{
 TC<char,int> tchar;
 tchar.funtest();
 TC<int,int> tint;
 tint.funtest();
 TC<double,double> tdouble;
 tdouble.funtest();
}

輸出:

泛化版本建構函式
泛化版本成員函式
全特化版本建構函式
全特化版本成員函式
泛化版本建構函式
全特化版本函式

二、類模板偏特化

1、模板引數數量上:

template.h

#pragma once
#include <iostream>
#include <map>
 
template <typename T,typename U,typename W>
class TC2
{
public:
 void funtest()
 {
 std::cout << "泛化版本成員函式" << std::endl;
 }
};
 
template <typename U>
class TC2<int,U,double>
{
public:
 void funtest()
 {
 std::cout << "偏特化版本成員函式" << std::endl;
 }
};

main.cpp

#include <iostream>
#include "template.h"
using namespace std;
 
int main()
{
 TC2<double,double,double> tdouble2;
 tdouble2.funtest();
 TC2<int,double> tint2;
 tint2.funtest()
}

輸出:

泛化版本成員函式
偏特化版本成員函式

2、從模板引數範圍:

template.h

#pragma once
#include <iostream>
#include <map>
 
template <typename T>
class TC3
{
public:
 void funtest()
 {
 std::cout << "泛化版本成員函式" << std::endl;
 }
};
 
template <typename T>
class TC3<const T>
{
public:
 void funtest()
 {
 std::cout << "const T偏特化版本成員函式" << std::endl;
 }
};
 
template <typename T>
class TC3<T&>
{
public:
 void funtest()
 {
 std::cout << "T&偏特化版本成員函式" << std::endl;
 }
};
 
template <typename T>
class TC3<T *>
{
public:
 void funtest()
 {
 std::cout << "T *偏特化版本成員函式" << std::endl;
 }
};

main.cpp

#include <iostream>
#include "template.h"
using namespace std;
 
int main()
{
 TC3<int> tint3;
 tint3.funtest();
 TC3<int &> tint3_ref;
 tint3_ref.funtest();
 TC3<int *> tint3_point;
 tint3_point.funtest();
 TC3<const int> tint3_const;
 tint3_const.funtest();
}

輸出:

泛化版本成員函式
T&偏特化版本成員函式
T *偏特化版本成員函式
const T偏特化版本成員函式

三、函式模板全特化(不能偏特化)

template.h

#pragma once
#include <iostream>
#include <map>
 
template <typename T,typename U>
void tfunc(T& a,U& b)
{
 std::cout << "tfunc 泛化版本函式" << std::endl;
}
 
template <>
void tfunc(int& a,int& b)
{
 std::cout << "tfunc 全特化版本函式" << std::endl;
}

main.cpp

#include <iostream>
#include "template.h"
using namespace std;
 
int main()
{
 int a1 = 1;
 double b1 = 3.2;
 tfunc(a1,b1);
 tfunc(a1,a1);
}

輸出:

tfunc 泛化版本函式
tfunc 全特化版本函式

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。