開發平台(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