開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
VC++
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
大家好
我是剛學C++的新手
剛學到class的部分
剛在寫作業時遇到一個問題一直找不出問題在哪
就是我在class的header file裡面定義了一個
private :
static string suitDict[4] ;
然後在class的constructor裡面寫
suitDict[0] = "spade";
suitDict[1] = "heart";
suitDict[2] = "diamond";
suitDict[3] = "club";
然後complie時就出現錯誤訊息
錯誤訊息 :
錯誤 2 error LNK2001: 無法解析的外部符號 "private: static class
std::basic_string<char,struct std::char_traits<char>,class
std::allocator<char> > * Card::faceDict"
但是若我把header file裡面的"static"拿到
就可以順利執行
想請問static這樣用的問題在哪裡?
謝謝
相關程式碼長這樣