C_and_CPP 板


LINE

開發平台(Platform): (Ex: Win10, Linux, ...) linux 編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出) 額外使用到的函數庫(Library Used): (Ex: OpenGL, ...) 問題(Question): 大家好,剛接觸C++沒多久(以前學c),還不太熟悉請多指教。 編譯完後出現一群undefined reference to, 我覺得應該是在講class R的問題,可是檢查了R找不出錯在哪... 詳細狀況如下: /tmp/ccY2jGY2.o: In function `R::R(int, int)': test.cpp:(.text._ZN1RC2Eii[_ZN1RC5Eii]+0x13): undefined reference to `R::r1' test.cpp:(.text._ZN1RC2Eii[_ZN1RC5Eii]+0x1c): undefined reference to `R::r2' /tmp/ccY2jGY2.o: In function `R::now()': test.cpp:(.text._ZN1R3nowEv[_ZN1R3nowEv]+0x10): undefined reference to `R::r1' /tmp/ccY2jGY2.o: In function `R::Ans(float)': test.cpp:(.text._ZN1R3AnsEf[_ZN1R3AnsEf]+0x68): undefined reference to `R::s' test.cpp:(.text._ZN1R3AnsEf[_ZN1R3AnsEf]+0x6e): undefined reference to `R::r1' test.cpp:(.text._ZN1R3AnsEf[_ZN1R3AnsEf]+0x7f): undefined reference to `R::s' test.cpp:(.text._ZN1R3AnsEf[_ZN1R3AnsEf]+0x90): undefined reference to `R::r2' test.cpp:(.text._ZN1R3AnsEf[_ZN1R3AnsEf]+0x96): undefined reference to `R::r1' test.cpp:(.text._ZN1R3AnsEf[_ZN1R3AnsEf]+0xff): undefined reference to `R::r1' test.cpp:(.text._ZN1R3AnsEf[_ZN1R3AnsEf]+0x105): undefined reference to `R::r1' collect2: error: ld returned 1 exit status 餵入的資料(Input): 預期的正確結果(Expected Output): 錯誤結果(Wrong Output): 程式碼(Code):(請善用置底文網頁, 記得排版) codePad:https://codepad.remoteinterview.io/HUAVHCNAJT #include <iostream> #include <cmath> #include <cstdlib> # include <iostream> # include <string> # include <fstream> using namespace std; //專門拿來算R的class class R{ public: int ans;//所求 R(){ cerr<<"no data to calculate"; } R(int r1_,int r2_){ r1=r1_; r2=r2_; } //還沒有輸入s值的R值 int now(){ ans=r1; return ans; } //有輸入s的R值 int Ans(float s_){ //s 只有三種:1 ,0 ,0.5 if (s_==1||s_==0||s_==0.5){ s=s_; } else{ cerr<<"need to be 1 0.5 0"; exit(1); } r1=r1+k*(s-(1/(1+pow(10,(r2 - r1/400))))); //R的計算公式 ans=r1; return ans; } private: static int r1,r2; static float s; static const int k=32; }; int main(){ ofstream outFile("filein.txt",ios::out);//先做一個filein.txt if(!outFile) { cerr<<"err\n"; exit(1); } //輸入原始數據 outFile << "k\tr1\tr2\n"; outFile << 32<<"\t"<<1613<<"\t"<<1609<<endl; outFile << "sa\tsb\n"; outFile << 0 <<"\t"<< (1-0)<<"\t"<<endl; outFile << 0.5 <<"\t"<< (1-0.5)<<"\t"<<endl; outFile << 0.5 <<"\t"<< (1-0.5)<<"\t"<<endl; outFile << 0 <<"\t"<< (1-0)<<"\t"<<endl; outFile << 0 <<"\t"<< (1-0)<<"\t"<<endl; outFile << 0 <<"\t"<< (1-0)<<"\t"<<endl; outFile.close(); //接下來要開始讀filein,txt,然後寫一個fileout.txt //宣告,等一下會用到 string headline1, headline2; int r1,r2,k; float pointa,pointb;//s值 ifstream inFile("filein.txt",ios::in); ofstream ouFile("fileout.txt",ios::out); //成功? if(!inFile){ cerr<<"filein.txt fail"; exit(1); } if(!ouFile){ cerr<<"fileout.txt fail"; exit(1); } //開始讀檔 getline(inFile,headline1); inFile>>k>>r1>>r2; R ra(r1,r2); //初始化ra R rb(r2,r1); //初始化rb ouFile<< ra.now()<<"\t"<< rb.now()<<"\n"; //ra rb原封不動寫入fileout.txt //開始讀s值 while(inFile>>pointa>>pointb){ ouFile<< ra.Ans(pointa)<<"\t"<< rb.Ans(pointb)<<"\n"; //算一算寫入fileout.txt// } inFile.close(); ouFile.close(); } 補充說明(Supplement):*[m 這裡的R是在算Elo rate。 s是指每次勝負的得分。贏者得一分,輸了零分,平手0. 5 研究了很久都不了,拜託幫忙了 --



※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 218.164.190.214
※ 文章網址: https://webptt.com/m.aspx?n=bbs/C_and_CPP/M.1490905771.A.9FB.html ※ 編輯: franklin1997 (218.164.190.214), 03/31/2017 04:34:08 ※ 編輯: franklin1997 (218.164.190.214), 03/31/2017 04:34:49
1F:推 steve1012: 你需要 init static data member 吧 03/31 04:37
2F:→ steve1012: 找個地方初始化你class 的r1 03/31 04:38
3F:推 steve1012: 話說static 真的是你要的嗎 03/31 04:39
呃 應該是不用沒錯(打程式的時候自己混亂了 我睡一下再改改看 甘溫 ※ 編輯: franklin1997 (36.238.194.129), 03/31/2017 05:00:50
4F:推 loveflames: 問題有夠明顯,static data member寫在類裡面只是聲 03/31 07:30
5F:→ loveflames: 明,非定義 03/31 07:30
我把那兩個static刪掉了,謝謝兩位大大 ※ 編輯: franklin1997 (36.238.194.129), 03/31/2017 11:28:37
6F:推 HMKRL: 難怪我覺得這問題好眼熟XDD 這是算elo的對吧XDD 04/07 03:00







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燈, 水草

請輸入看板名稱,例如:Boy-Girl站內搜尋

TOP