首頁 > 後端開發 > C++ > 為什麼 `ifstream::open()` 不能與 `std::string` 參數一起使用?

為什麼 `ifstream::open()` 不能與 `std::string` 參數一起使用?

Mary-Kate Olsen
發布: 2024-12-08 04:29:10
原創
890 人瀏覽過

Why Doesn't `ifstream::open()` Work with `std::string` Arguments?

沒有 ifstream open() 的匹配函數

問題出現在程式碼片段:

std::ifstream file;
file.open(name); // the error is here
登入後複製

問題出現在程式碼片段中:

Dev C>Dev C>Dev C>Dev C>Dev遇到錯誤「沒有匹配的呼叫函數'std::basic_ifstream::open(std::string&)" 和「呼叫'std::basic_ofstream::open(std::string&) 時沒有匹配的函數」。出現這些錯誤的原因是 ifstream 中的 open() 函數需要 C 樣式字串作為參數,但程式碼提供了 std::string。

解決方案:

file.open(name.c_str());
登入後複製

要解決此問題,請使用c_str() 成員將std::string 轉換為C 樣式字串函數:

std::ifstream file(name.c_str());
登入後複製

或者,您可以直接使用C 風格字串初始化ifstream物件:

std::vector<int> loadNumbersFromFile(const std::string& name)
登入後複製

此外,考慮聲明 loadNumbersFromFile() 如下:

此變更表示函數不會修改其參數並防止不必要的複製。

以上是為什麼 `ifstream::open()` 不能與 `std::string` 參數一起使用?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板