大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
一、类模板全特化、偏特化
创新互联公司为您提适合企业的网站设计 让您的网站在搜索引擎具有高度排名,让您的网站具备超强的网络竞争力!结合企业自身,进行网站设计及把握,最后结合企业文化和具体宗旨等,才能创作出一份性化解决方案。从网站策划到成都做网站、成都网站制作、成都外贸网站建设, 我们的网页设计师为您提供的解决方案。
#pragma once #include#include
main.cpp
#include#include "template.h" using namespace std; int main() { TC tchar; tchar.funtest(); TC tint; tint.funtest(); TC tdouble; tdouble.funtest(); }
输出:
泛化版本构造函数
泛化版本成员函数
全特化版本构造函数
全特化版本成员函数
泛化版本构造函数
全特化版本函数
二、类模板偏特化
1、模板参数数量上:
template.h
#pragma once #include#include
main.cpp
#include#include "template.h" using namespace std; int main() { TC2 tdouble2; tdouble2.funtest(); TC2 tint2; tint2.funtest() }
输出:
泛化版本成员函数
偏特化版本成员函数
2、从模板参数范围:
template.h
#pragma once #include#include
main.cpp
#include#include "template.h" using namespace std; int main() { TC3 tint3; tint3.funtest(); TC3 tint3_ref; tint3_ref.funtest(); TC3 tint3_point; tint3_point.funtest(); TC3 tint3_const; tint3_const.funtest(); }
输出:
泛化版本成员函数
T&偏特化版本成员函数
T *偏特化版本成员函数
const T偏特化版本成员函数
三、函数模板全特化(不能偏特化)
template.h
#pragma once #include#include
main.cpp
#include#include "template.h" using namespace std; int main() { int a1 = 1; double b1 = 3.2; tfunc(a1, b1); tfunc(a1, a1); }
输出:
tfunc 泛化版本函数
tfunc 全特化版本函数
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持创新互联。