在包含下列行的 C 程式碼中:
file.open(name);
常見錯誤是:
no matching function for call 'std::ifstream::open(std::string&)'
出現此問題是因為舊版的 C(C 11 之前)不支援使用 std::string 參數開啟檔案。 open() 函數需要字元陣列或 C 風格字串。
要解決此錯誤,可以使用以下方法之一:
file.open(name.c_str());
std::ifstream file(name.c_str());
這種方法無需單獨建構和
此外,為了確保loadNumbersFromFile() 函數不會修改其參數,建議引用常數std::string 來傳遞:
std::vector<int> loadNumbersFromFile(const std::string& name) { // ... }
以上是為什麼 `ifstream::open(std::string)` 在舊 C 版本中失敗?的詳細內容。更多資訊請關注PHP中文網其他相關文章!