有一個項目需要寫csv檔以呈現資料。 Github上有一個關於csv的輕量級讀寫函式庫minicsv,於是下載之。但編譯example時出現了以下問題:
In file included from example.cpp:1:0:
minicsv.hpp: In function
'csv::ofstream& operatorminicsv.hpp:326:38: error: no matching function for call to
'csv::ofstream::escape_and_output(std::basic_ostringstream
ostm.escape_and_output(os_temp.str());
^
minicsv.hpp:326:38:
note: candidate is:
minicsv.hpp:266:8: note: void
csv::ofstream::escape_and_output(std::string&)
void
escape_and_output(std::string & src)
...
錯誤很多,不再貼出,佔用篇幅。這些錯誤都來自於同一個函數頭。這個函數頭是這樣定義的:
void escape_and_output(std::string & src)
而呼叫時是這個樣子:
ostm.escape_and_output(os_temp.str());
ost,調用時的函數頭所要求的是右頭引用時的函數所要求的是右頭。左值引用,兩者不符,於是編譯器報錯。修改很簡單,「&」改為「&」即可,也就是把函數頭改成這個樣子:
void escape_and_output(std::string &
src)
錯誤很水,本來也不想寫出來,但是又怕對c++0x不熟悉的人會不知所措,故貼之。還有我不知道為何專案中會留下這麼個顯而易見的錯誤——或許那個老大的編譯器太聰明了吧。
更多相關文章請追蹤PHP中文網(www.php.cn)!