中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

C++中怎么進行文件操作

c++
小億
87
2024-03-11 14:30:29
欄目: 編程語言

在C++中進行文件操作通常需要包含頭文件。以下是一些常用的文件操作函數:

  1. 打開文件:
#include <fstream>
#include <iostream>

int main() {
    std::ifstream file("input.txt"); // 打開一個文件用于讀取
    //std::ofstream file("output.txt"); // 打開一個文件用于寫入
    //std::fstream file("file.txt"); // 打開一個文件用于讀寫

    if(file.is_open()) {
        std::cout << "文件打開成功" << std::endl;
    } else {
        std::cout << "文件打開失敗" << std::endl;
    }

    file.close(); // 關閉文件
    return 0;
}
  1. 讀取文件內容:
#include <fstream>
#include <iostream>

int main() {
    std::ifstream file("input.txt");

    if(file.is_open()) {
        std::string line;
        while(std::getline(file, line)) {
            std::cout << line << std::endl;
        }
    } else {
        std::cout << "文件打開失敗" << std::endl;
    }

    file.close();
    return 0;
}
  1. 寫入文件內容:
#include <fstream>
#include <iostream>

int main() {
    std::ofstream file("output.txt");

    if(file.is_open()) {
        file << "Hello, World!" << std::endl;
    } else {
        std::cout << "文件打開失敗" << std::endl;
    }

    file.close();
    return 0;
}
  1. 定位到文件指定位置進行讀寫:
#include <fstream>
#include <iostream>

int main() {
    std::fstream file("file.txt");

    if(file.is_open()) {
        file.seekp(5); // 將寫入位置定位到第5個字符
        file << "Hello";
        
        file.seekg(0); // 將讀取位置定位到開頭
        std::string content;
        file >> content;
        std::cout << content << std::endl;
    } else {
        std::cout << "文件打開失敗" << std::endl;
    }

    file.close();
    return 0;
}

這些是C++中常用的文件操作函數,可以根據具體需求進行調用。

0
潼关县| 甘泉县| 荥经县| 游戏| 西充县| 鄂尔多斯市| 健康| 肥东县| 阳江市| 松潘县| 环江| 枣强县| 金坛市| 榆社县| 沁源县| 水富县| 合江县| 太仓市| 建昌县| 南充市| 尚志市| 毕节市| 陈巴尔虎旗| 布尔津县| 阳朔县| 井陉县| 远安县| 麦盖提县| 井冈山市| 甘谷县| 昆山市| 霍山县| 浦县| 株洲县| 临高县| 五台县| 武隆县| 潮安县| 泰宁县| 隆化县| 嘉峪关市|