成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

C++類模板、函數(shù)模板全特化以及偏特化的實(shí)例用法-創(chuàng)新互聯(lián)

這篇文章主要介紹“C++類模板、函數(shù)模板全特化以及偏特化的實(shí)例用法”,在日常操作中,相信很多人在C++類模板、函數(shù)模板全特化以及偏特化的實(shí)例用法問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”C++類模板、函數(shù)模板全特化以及偏特化的實(shí)例用法”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

創(chuàng)新互聯(lián)是一家企業(yè)級(jí)云計(jì)算解決方案提供商,超15年IDC數(shù)據(jù)中心運(yùn)營(yíng)經(jīng)驗(yàn)。主營(yíng)GPU顯卡服務(wù)器,站群服務(wù)器,成都服務(wù)器托管,海外高防服務(wù)器,大帶寬服務(wù)器,動(dòng)態(tài)撥號(hào)VPS,海外云手機(jī),海外云服務(wù)器,海外服務(wù)器租用托管等。

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

#pragma once#include <iostream>#include <map> template <typename T, typename U>class TC{public: TC()  { std::cout << "泛化版本構(gòu)造函數(shù)" << std::endl; } void funtest() { std::cout << "泛化版本成員函數(shù)" << std::endl; }}; template<>class TC<int, int>{public: TC() { std::cout << "全特化版本構(gòu)造函數(shù)" << std::endl; } void funtest() { std::cout << "全特化版本成員函數(shù)" << std::endl; }}; template<>void TC<double, double>::funtest(){ std::cout << "全特化版本函數(shù)" << 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();}

輸出:

泛化版本構(gòu)造函數(shù)泛化版本成員函數(shù)全特化版本構(gòu)造函數(shù)全特化版本成員函數(shù)泛化版本構(gòu)造函數(shù)全特化版本函數(shù)

二、類模板偏特化

1、模板參數(shù)數(shù)量上:

template.h

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

輸出:

泛化版本成員函數(shù)偏特化版本成員函數(shù)

2、從模板參數(shù)范圍:

template.h

#pragma once#include <iostream>#include <map> template <typename T>class TC3{public: void funtest() { std::cout << "泛化版本成員函數(shù)" << std::endl; }}; template <typename T>class TC3<const T>{public: void funtest() { std::cout << "const T偏特化版本成員函數(shù)" << std::endl; }}; template <typename T>class TC3<T&>{public: void funtest() { std::cout << "T&偏特化版本成員函數(shù)" << std::endl; }}; template <typename T>class TC3<T *>{public: void funtest() { std::cout << "T *偏特化版本成員函數(shù)" << 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();}

輸出:

泛化版本成員函數(shù)T&偏特化版本成員函數(shù)T *偏特化版本成員函數(shù)const T偏特化版本成員函數(shù)

三、函數(shù)模板全特化(不能偏特化)

template.h

#pragma once#include <iostream>#include <map> template <typename T, typename U>void tfunc(T& a, U& b){ std::cout << "tfunc 泛化版本函數(shù)" << std::endl;} template <>void tfunc(int& a, int& b){ std::cout << "tfunc 全特化版本函數(shù)" << 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 泛化版本函數(shù)tfunc 全特化版本函數(shù)

到此,關(guān)于“C++類模板、函數(shù)模板全特化以及偏特化的實(shí)例用法”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!

標(biāo)題名稱:C++類模板、函數(shù)模板全特化以及偏特化的實(shí)例用法-創(chuàng)新互聯(lián)
地址分享:http://jinyejixie.com/article6/gihig.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站維護(hù)、微信小程序、網(wǎng)站營(yíng)銷、網(wǎng)站收錄、外貿(mào)網(wǎng)站建設(shè)、服務(wù)器托管

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

手機(jī)網(wǎng)站建設(shè)
邵阳县| 延长县| 象州县| 江城| 镇安县| 巴青县| 岑溪市| 徐州市| 磐石市| 綦江县| 根河市| 千阳县| 鹤岗市| 乐山市| 庄河市| 鹤山市| 遵化市| 磐安县| 恩施市| 洛扎县| 崇仁县| 筠连县| 汉阴县| 定结县| 岗巴县| 安龙县| 白玉县| 洛南县| 嘉峪关市| 北辰区| 沧源| 纳雍县| 南乐县| 德惠市| 广安市| 兴国县| 西吉县| 南雄市| 卓资县| 紫金县| 伊宁县|