MinGW 4.6.1 中的std::stoi 問題
錯誤「error: 'stoi' is not a member of 'std' " 使用MinGW 4.6.1 進行編譯時源自於Windows 上vswprintf 的非標準宣告。
說明:
GNU 標準函式庫對此定義了巨集 _GLIBCXX_HAVE_BROKEN_VSWPRINTF平台。此巨集停用某些轉換函數,包括 std::stoi。
解決方法:
要解決此問題,請考慮修改隨MinGW 分發的頭檔:
後果:
此解決方法停用 std::to_wstring 函數,但允許其他轉換功能可用。
以上是為什麼用 MinGW 4.6.1 編譯時「stoi」不是「std」的成員?的詳細內容。更多資訊請關注PHP中文網其他相關文章!