亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

c++文本文件讀寫的方法是什么

c++
小億
101
2023-12-07 20:10:04
欄目: 編程語言

在C++中,文本文件的讀寫可以使用標準庫中的fstream類。fstream類提供了與文件的輸入和輸出操作相關的成員函數和操作符重載。

以下是一些常用的文本文件讀寫操作方法:

  1. 打開文件: 可以使用fstream類的open函數來打開文件。open函數接受兩個參數:文件名和打開模式(輸入、輸出或者輸入輸出)。
#include <fstream>
using namespace std;

int main() {
    ofstream file;
    file.open("example.txt"); // 打開文件example.txt
    // 或者
    // ofstream file("example.txt");
    
    // 寫入操作...
    
    file.close(); // 關閉文件
    
    return 0;
}
  1. 寫入文件: 使用ofstream類對象的<<操作符可以將數據寫入文件。可以像使用cout對象一樣使用ofstream對象。
#include <fstream>
using namespace std;

int main() {
    ofstream file("example.txt");
    
    if (file.is_open()) {
        file << "Hello, World!" << endl;
        file << "This is a text file." << endl;
        
        file.close();
    }
    
    return 0;
}
  1. 讀取文件: 使用ifstream類對象的>>操作符可以從文件中讀取數據。可以像使用cin對象一樣使用ifstream對象。
#include <fstream>
#include <iostream>
using namespace std;

int main() {
    ifstream file("example.txt");
    
    if (file.is_open()) {
        string line;
        while (getline(file, line)) {
            cout << line << endl;
        }
        
        file.close();
    }
    
    return 0;
}

以上是一些基礎的文本文件的讀寫方法,你可以根據需要進一步探索fstream類提供的其他成員函數和操作符重載。

0
澎湖县| 贡觉县| 宁海县| 龙门县| 嘉黎县| 金阳县| 时尚| 乐昌市| 轮台县| 清丰县| 黄平县| 桐城市| 南阳市| 合阳县| 福海县| 二连浩特市| 肥西县| 宁武县| 宁安市| 阜宁县| 东光县| 天台县| 五常市| 甘肃省| 开原市| 察雅县| 龙川县| 余干县| 道真| 九江县| 峨边| 广水市| 神池县| 日喀则市| 双峰县| 朝阳区| 遂溪县| 延长县| 天祝| 南皮县| 万载县|