看板 C_and_CPP 關於我們 聯絡資訊
開發平台(Platform): (Ex: VC++, GCC, Linux, ...) Linux/g++ // 將 template 宣告在 quaternion.h , 函數實作在 quaternion.cpp https://gist.github.com/anonymous/00090f1598973c1c924afebf88199cc9 這樣編譯下面錯誤 g++ main.cpp quaternion.cpp -o main /tmp/ccnOQeym.o: In function `main': main.cpp:(.text+0x27): undefined reference to `Quaternion<float>::Quaternion()' main.cpp:(.text+0x38): undefined reference to `Quaternion<float>::~Quaternion()' collect2: error: ld returned 1 exit status 我把template 宣告跟實做都集中在 quaternion.h 可以編譯過 https://gist.github.com/anonymous/21a12dfedf6982b963d249f890977aaf g++ main.cpp -o main 請問這是什麼原因造成? 謝謝 -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 175.182.180.254 ※ 文章網址: https://www.ptt.cc/bbs/C_and_CPP/M.1474555677.A.11B.html ※ 編輯: gigigigi (175.182.180.254), 09/22/2016 22:48:27
g0010726: 所以是指一開始沒把實作include到main.cpp會error嗎? 09/22 23:07
g0010726: 這是因為編譯main.cpp的時候需要有template的實作, 09/22 23:07
g0010726: 用來產生Quaternion<float>這個class吧 09/22 23:08
gigigigi: gcc -c main.cpp 可以過~上面錯誤應該是link 階段出錯 09/22 23:11
※ 編輯: gigigigi (175.182.180.254), 09/22/2016 23:13:00
gigigigi: g++ main.cpp quaternion.cpp -o main 也有把 09/22 23:13
gigigigi: quaternion 實作編譯出來但 link 出錯 09/22 23:14
ilikekotomi: https://goo.gl/GW1ma0 最簡單的方法是都放到.h檔 09/22 23:36
legendmtg: template實作要跟定義寫在同個檔裡 09/22 23:37
legendmtg: 宣告 09/22 23:37
ilikekotomi: https://goo.gl/ZaAepL 或是參考這個 兩個都有寫原因 09/22 23:38
gigigigi: 我是那悶這樣拆問什麼 link 階段會失敗.. 因為這程式碼 09/22 23:38
gigigigi: 是拆成h & cpp 檔案.. 09/22 23:39
ilikekotomi: 我的理解是編譯Q.cpp的時候 不會知道要編出Q<float> 09/22 23:40
ilikekotomi: 你在.cpp加個template class Q<float>; 應該就會對了 09/22 23:41
ilikekotomi: Q.cpp沒有編譯出Q<float>的實作 所以main.cpp 09/22 23:43
ilikekotomi: 就會出現link error 09/22 23:43
ilikekotomi: 不過一般都是全部放到.h檔 stl的容器也都是這樣 09/22 23:49
gigigigi: 我大概懂了,template 是編譯階段看宣告type 去覺的產生 09/23 00:24
gigigigi: 對應 type class ... 09/23 00:25
QQ29: 你可以在你的quaternion.cpp 最後面寫上 09/23 04:02
QQ29: template class Quaternion<float>; 09/23 04:02
QQ29: 應該就可以了 09/23 04:03