[問題] (C++)關於template separation compilation model

作者: xie29 (xie29)   2017-04-30 15:48:11
開發平台(Platform): (Ex: Win10, Linux, ...)
macos
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
xcode
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
各位大大好,小弟為c++的初學者,現在正在看c++ primer(3rd),在template編譯模組時碰到了一點問題
,我的目的是想要將template的宣告和定義分開,但編譯一直給我linker error的訊息,有去google了但
原因我還是看不太懂(抱歉我太菜了...),但有試過他們提供的解決方法都有效,但還是想知道為什麼無法
執行..感謝!
餵入的資料(Input):
預期的正確結果(Expected Output):
錯誤結果(Wrong Output):
Undefined symbols for architecture x86_64:
"int mmm<int>(int, int)", referenced from:
_main in main.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
程式碼(Code):(請善用置底文網頁, 記得排版)
//File:Min.hpp
#ifndef _MIN
#define _MIN
template <class Type>
extern Type _min(Type , Type);
#endif
作者: xie29 (xie29)   2017-04-30 16:13:00
* template編譯模型 抱歉打錯了
作者: cyanis (Terry)   2017-04-30 16:34:00
我猜是因為忘了角括號<>?<int>啊~剛剛查了應該不用,請無視上面的
作者: xie29 (xie29)   2017-04-30 17:47:00
好的 還是感謝大大回覆更正:在錯誤訊息那邊的mmm就是_min,因為ㄧ開始以爲是function名稱有衝突所以隨便改ㄧ個名字
作者: jerryh001   2017-04-30 18:47:00
應該不能這樣分開吧?
作者: grayStone (灰色石頭)   2017-04-30 19:01:00
你要讓template在compile time知道型態compiler分別編了min.o main.o但是link的時候才發現需要Type=int的function
作者: xie29 (xie29)   2017-04-30 21:31:00
J大:不行嗎? 因為我看書上這樣教,我就實作看看了不過的確compiler不給我過..g大:感謝您的解說!非常清楚!謝謝~
作者: grayStone (灰色石頭)   2017-05-01 01:51:00
可以分只是要寫在min.cpp告訴編譯器要做int的或是include implement.hpp不過都寫template了自己是覺得分到cpp意義不大
作者: xie29 (xie29)   2017-05-01 12:59:00
g大:那時候是想說,以後會不想公開實作檔,所以才想說試試,但看了網路上solution後感覺有點此地無銀三百兩..所以最後就覺得還是宣告跟定義寫在ㄧ起好了!! 感謝大大的回覆!很有幫助
作者: hunandy14 (Charlott.HonG)   2017-05-01 13:00:00
作者: xie29 (xie29)   2017-05-01 21:57:00
感謝h大的回覆~

Links booklink

Contact Us: admin [ a t ] ucptt.com