開發平台(Platform): (Ex: Win10, Linux, ...)
C/C++
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
VC++
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
std::map
問題(Question):
在執行insert時,跳出以下errors
餵入的資料(Input):
typedef struct AAA
{
float score;
bool compare;
} AAA;
預期的正確結果(Expected Output):
insert成功
錯誤結果(Wrong Output):
Error C2678 binary '<': no operator found which takes a left-hand operand
of type 'const AAA' (or there is no acceptable
conversion)
C:\Program Files (x86)\Microsoft Visual Studio
14.0\VC\include\xstddef 239
程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔)
std::map<AAA, int>AAAInfo;
AAA *pInfo = new AAA[1];
pInfo[0].score = 90;
pInfo[0].compare = true;
int nIndex = 2;
AAAInfo.insert(std::make_pair(pInfo[0], nIndex));
補充說明(Supplement):
用::value_type也一樣