时间:2021-05-20
一、类模板全特化、偏特化
#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, 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 全特化版本函数
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
1.模板特化1.1概述模板特化(templatespecialization)不同于模板的实例化,模板参数在某种特定类型下的具体实现称为模板的特化。模板特化有时
本文针对C++函数模板与类模板进行了较为详尽的实例解析,有助于帮助读者加深对C++函数模板与类模板的理解。具体内容如下:泛型编程(GenericProgramm
1.类模板显式特化为了进行特化,首先需要一个通用的版本,称主模板.主模板使用了标准库堆算法.堆是一种线性化的树形结构,将一个值压入一个堆中,实际上等于将该值插入
C++11关于模板有一些细节的改进:模板的右尖括号模板的别名函数模板的默认模板参数模板的右尖括号C++11之前是不允许两个右尖括号出现的,会被认为是右移操作符,
模板是C++支持参数化多态的工具,使用模板可以使用户为类或者函数声明一种一般模式,使得类中的某些数据成员或者成员函数的参数、返回值取得任意类型。模板是一种对类型