溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

有哪些C++模板坑

發(fā)布時(shí)間:2021-11-01 17:19:04 來(lái)源:億速云 閱讀:119 作者:iii 欄目:編程語(yǔ)言

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

問題復(fù)現(xiàn)

頭文件聲明:

// temp.h #ifndef _TEMP_H_ #define _TEMP_H_ #include <iostream> #include <vector> template <typename T> using Vec = std::vector<T>; #define PRINTFMT(x) std::cout << x << " ";  template <typename T> void TestTemp(const Vec<T> &v, T target); #endif

頭文件實(shí)現(xiàn):

#include "temp.h"   template <typename T> void TestTemp(const Vec<T> &v, T target) {     [=]() {         for (auto elem : v)             if (elem == target)                 PRINTFMT(elem);     }(); }

報(bào)錯(cuò):

undefined reference to....

問題描述:當(dāng)在.h中聲明了模板,.cpp中定義了模板,當(dāng)main函數(shù)去進(jìn)行模板實(shí)例化的時(shí)候,在聲明處找不到對(duì)應(yīng)的T類型,自然就出問題了。

1.第一種:同一文件

聲明及定義都在.h文件中。

// temp.h #ifndef _TEMP_H_ #define _TEMP_H_ #include <iostream> #include <vector> template <typename T> using Vec = std::vector<T>; #define PRINTFMT(x) std::cout << x << " ";  template <typename T> void TestTemp(const Vec<T> &v, T target) {     [=]() {         for (auto elem : v)             if (elem == target)                 PRINTFMT(elem);     }(); } #endif

2.第二種:分離開+引入頭文件

采用頭文件聲明,cpp定義,要想起作用,得在使用處引入兩者并且定義處得用特化版本。

例如:

頭文件實(shí)現(xiàn):

// Temp.cpp #include "temp.h"  void TestTemp(const Vec<int> &v, int target) {     [=]() {         for (auto elem : v)             if (elem == target)                 PRINTFMT(elem);     }(); }  template <typename T> void TestTemp(const Vec<T> &v, T target) {     [=]() {         for (auto elem : v)             if (elem == target)                 PRINTFMT(elem);     }(); }

實(shí)現(xiàn):

#include "temp.h" #include "temp.cpp"  int main() {     std::vector<int> v{1,2,3};     int target = 2;     TestTemp<int>(v,target);      return 0; }

3.在末尾引入cpp

只需要在.h頭文件末尾引入cpp即可。

頭文件只需要聲明:

// temp.h #ifndef _TEMP_H_ #define _TEMP_H_ #include <iostream> #include <vector> template <typename T> using Vec = std::vector<T>; #define PRINTFMT(x) std::cout << x << " ";  template <typename T> void TestTemp(const Vec<T> &v, T target); #include "temp.cpp" #endif

頭文件定義即可:

// Temp.cpp #include "temp.h"  template <typename T> void TestTemp(const Vec<T> &v, T target) {     [=]() {         for (auto elem : v)             if (elem == target)                 PRINTFMT(elem);     }(); }

調(diào)用處正常調(diào)用:

#include "temp.h"  int main() {     std::vector<int> v{1,2,3};     int target = 2;     TestTemp<int>(v,target);      return 0; }

在一些開源項(xiàng)目中,這種方式比較常見,只不過(guò)這里的.cpp得改為.hpp。其余不變!

到此,關(guān)于“有哪些C++模板坑”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

c++
AI