C_and_CPP 板


LINE

開發平台(Platform): (Ex: Win10, Linux, ...) Win10 編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出) VC++2017 額外使用到的函數庫(Library Used): (Ex: OpenGL, ...) 問題(Question): 小弟目前在做學校的Double-Linked List的作業,教授提供框架叫我們把implementation寫出來 之後執行教授提供的測試檔時出現了LNK 2019的錯誤:https://goo.gl/zog1jk 上網查了一下,普遍都是說忘記把該連結的dll檔寫進程式,但我這種簡單的程式根本不會用到任何外來的dll檔案啊QQ 而且我的錯誤訊息後面有亂碼,感覺跟網路上的案例都不太一樣。 想請問有人知道要怎麼解決嗎QQ 餵入的資料(Input): 預期的正確結果(Expected Output): 錯誤結果(Wrong Output): 1>------ 已開始建置: 專案: DoubleLinkedList, 組態: Debug Win32 ------ 1>DoubleLinkedList.obj : error LNK2019: 無法解析的外部符號 "public: __thiscall DList<int>::DList<int>(void)" (??0?$DList@H@@QAE@XZ) 在函式 _main 中被參考 1>DoubleLinkedList.obj : error LNK2019: 無法解析的外部符號 "public: bool __thiscall DList<int>::isEmpty(void)" (?isEmpty@?$DList@H@@QAE_NXZ) 在函式 _main 中被參考 1>DoubleLinkedList.obj : error LNK2019: 無法解析的外部符號 "public: int __thiscall DList<int>::length(void)" (?length@?$DList@H@@QAEHXZ) 在函式 _main 中被參考 1>DoubleLinkedList.obj : error LNK2019: 無法解析的外部符號 "public: void __thiscall DList<int>::insertFront(int const &)" (?insertFront@?$DList@H@@QAEXABH@Z) 在函式 _main 中被參考 1>DoubleLinkedList.obj : error LNK2019: 無法解析的外部符號 "public: void __thiscall DList<int>::insertBack(int const &)" (?insertBack@?$DList@H@@QAEXABH@Z) 在函式 _main 中被參考 1>DoubleLinkedList.obj : error LNK2019: 無法解析的外部符號 "public: class DListNode<int> * __thiscall DList<int>::front(void)" (?front@?$DList@H@@QAEPAV?$DListNode@H@@XZ) 在函式 _main 中被參考 1>DoubleLinkedList.obj : error LNK2019: 無法解析的外部符號 "public: class DListNode<int> * __thiscall DList<int>::back(void)" (?back@?$DList@H@@QAEPAV?$DListNode@H@@XZ) 在函式 _main 中被參考 1>DoubleLinkedList.obj : error LNK2019: 無法解析的外部符號 "public: class DListNode<int> * __thiscall DList<int>::next(class DListNode<int> *)" (?next@?$DList@H@@QAEPAV?$DListNode@H@@PAV2@@Z) 在函式 _main 中被參考 1>DoubleLinkedList.obj : error LNK2019: 無法解析的外部符號 "public: class DListNode<int> * __thiscall DList<int>::prev(class DListNode<int> *)" (?prev@?$DList@H@@QAEPAV?$DListNode@H@@PAV2@@Z) 在函式 _main 中被參考 1>DoubleLinkedList.obj : error LNK2019: 無法解析的外部符號 "public: void __thiscall DList<int>::insertAfter(int const &,class DListNode<int> *)" (?insertAfter@?$DList@H@@QAEXABHPAV?$DListNode@H@@@Z) 在函式 _main 中被參考 1>DoubleLinkedList.obj : error LNK2019: 無法解析的外部符號 "public: void __thiscall DList<int>::insertBefore(int const &,class DListNode<int> *)" (?insertBefore@?$DList@H@@QAEXABHPAV?$DListNode@H@@@Z) 在函式 _main 中被參考 1>DoubleLinkedList.obj : error LNK2019: 無法解析的外部符號 "public: void __thiscall DList<int>::remove(class DListNode<int> *)" (?remove@?$DList@H@@QAEXPAV?$DListNode@H@@@Z) 在函式 _main 中被參考 1>DoubleLinkedList.obj : error LNK2019: 無法解析的外部符號 "public: void __thiscall DList<int>::toString(void)" (?toString@?$DList@H@@QAEXXZ) 在函式 _main 中被參考 1>D:\Documents\GoogleDrive.infinite.r06\資料結構作業\HW3\DoubleLinkedList\Debug\DoubleLinkedList.exe : fatal error LNK1120: 13 個無法解析的外部符號 1>專案 "DoubleLinkedList.vcxproj" 建置完成 -- 失敗。 ========== 建置: 0 成功、1 失敗、0 最新、0 略過 ========== 程式碼(Code):(請善用置底文網頁, 記得排版) 程式碼與錯誤訊息:http://goo.gl/pcZ8ao 各檔案大概如下: DList.h.txt:提供double-linked list的控制項 DList.cpp:DList.h的implementation DListNode.h.txt:每個node DListNode.cpp.txt:node的implementation DoubleLinkedList.cpp.txt:測試的主程式碼 補充說明(Supplement): --



※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 140.112.25.99
※ 文章網址: https://webptt.com/m.aspx?n=bbs/C_and_CPP/M.1508496802.A.DFA.html
1F:→ longlongint: 甚麼是 DList ? 10/20 19:06
2F:推 jerryh001: 有template的class宣告和定義不能分開 10/20 19:09
3F:→ Hazukashiine: 這週串列週? 10/20 19:10
4F:→ chengcti: 可以提供整個專案檔嗎 有可能設定錯誤 10/20 19:18
5F:推 damody: 推2樓 10/20 19:22
6F:→ nimsbnims: @longlongint 就是用來指向sentinel和提供node刪減的類 10/20 20:03
7F:→ nimsbnims: @jerryh001 請問這是什麼意思QQ 10/20 20:04
8F:→ nimsbnims: @chengcti 好,我放在同一個google資料夾下了 10/20 20:04
9F:→ nimsbnims: @chengcti https://goo.gl/v8hvGw 10/20 20:07
10F:→ nimsbnims: @感謝jerryh001大大,我把所有實作都寫在h就好了Orz 10/20 20:24
11F:→ moebear: 你程式碼連結我點進去叫我跟你拿權限== 10/21 03:02
12F:→ nimsbnims: 抱歉,後來解決了我就把權限關閉了,解決方法後來是直 10/28 19:07
13F:→ nimsbnims: 接把實作都寫入h檔,或是改用codeblock 10/28 19:07







like.gif 您可能會有興趣的文章
icon.png[問題/行為] 貓晚上進房間會不會有憋尿問題
icon.pngRe: [閒聊] 選了錯誤的女孩成為魔法少女 XDDDDDDDDDD
icon.png[正妹] 瑞典 一張
icon.png[心得] EMS高領長版毛衣.墨小樓MC1002
icon.png[分享] 丹龍隔熱紙GE55+33+22
icon.png[問題] 清洗洗衣機
icon.png[尋物] 窗台下的空間
icon.png[閒聊] 双極の女神1 木魔爵
icon.png[售車] 新竹 1997 march 1297cc 白色 四門
icon.png[討論] 能從照片感受到攝影者心情嗎
icon.png[狂賀] 賀賀賀賀 賀!島村卯月!總選舉NO.1
icon.png[難過] 羨慕白皮膚的女生
icon.png閱讀文章
icon.png[黑特]
icon.png[問題] SBK S1安裝於安全帽位置
icon.png[分享] 舊woo100絕版開箱!!
icon.pngRe: [無言] 關於小包衛生紙
icon.png[開箱] E5-2683V3 RX480Strix 快睿C1 簡單測試
icon.png[心得] 蒼の海賊龍 地獄 執行者16PT
icon.png[售車] 1999年Virage iO 1.8EXi
icon.png[心得] 挑戰33 LV10 獅子座pt solo
icon.png[閒聊] 手把手教你不被桶之新手主購教學
icon.png[分享] Civic Type R 量產版官方照無預警流出
icon.png[售車] Golf 4 2.0 銀色 自排
icon.png[出售] Graco提籃汽座(有底座)2000元誠可議
icon.png[問題] 請問補牙材質掉了還能再補嗎?(台中半年內
icon.png[問題] 44th 單曲 生寫竟然都給重複的啊啊!
icon.png[心得] 華南紅卡/icash 核卡
icon.png[問題] 拔牙矯正這樣正常嗎
icon.png[贈送] 老莫高業 初業 102年版
icon.png[情報] 三大行動支付 本季掀戰火
icon.png[寶寶] 博客來Amos水蠟筆5/1特價五折
icon.pngRe: [心得] 新鮮人一些面試分享
icon.png[心得] 蒼の海賊龍 地獄 麒麟25PT
icon.pngRe: [閒聊] (君の名は。雷慎入) 君名二創漫畫翻譯
icon.pngRe: [閒聊] OGN中場影片:失蹤人口局 (英文字幕)
icon.png[問題] 台灣大哥大4G訊號差
icon.png[出售] [全國]全新千尋侘草LED燈, 水草

請輸入看板名稱,例如:iOS站內搜尋

TOP