一、类模板全特化、偏特化
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38#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
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13#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
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23#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
复制代码
1
2
3
4
5
6
7
8
9
10
11#include <iostream> #include "template.h" using namespace std; int main() { TC2<double, double, double> tdouble2; tdouble2.funtest(); TC2<int, double, double> tint2; tint2.funtest() }
输出:
泛化版本成员函数
偏特化版本成员函数
2、从模板参数范围:
template.h
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43#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
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15#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
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15#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
复制代码
1
2
3
4
5
6
7
8
9
10
11#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 全特化版本函数
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持靠谱客。
最后
以上就是含蓄小兔子最近收集整理的关于C++ 类模板、函数模板全特化、偏特化的使用的全部内容,更多相关C++内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复