首頁 >後端開發 >C++ >如何正確地將 std::string 寫入 C 中的檔案?

如何正確地將 std::string 寫入 C 中的檔案?

DDD
DDD原創
2024-11-25 22:49:13878瀏覽

How Do I Correctly Write a std::string to a File in C  ?

使用std::string 進行檔案寫入:解開謎團

當嘗試將std::string 寫入檔案時,使用者可能會遇到意外的結果框或損壞的字元。這個問題是由於寫入字串的二進位資料而引起的,其中包含指標和字串長度,而不是實際的字元。

對於文字文件,適當的解決方案是使用 ofstream,其操作類似於 std ::cout 但將輸出定向到文件。考慮以下範例:

#include <fstream>
#include <string>

int main() {
    std::string input;
    std::cin >> input;
    std::ofstream out("output.txt");
    out << input;
    out.close();
    return 0;
}

但是,如果需要二進位數據,則應使用實際的字串字元。這可以使用 string::c_str():

write.write(studentPassword.c_str(), studentPassword.size());
來實現

以上是如何正確地將 std::string 寫入 C 中的檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn