91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
同德县| 铅山县| 镇赉县| 高平市| 东港市| 泾阳县| 漳平市| 平阳县| 晴隆县| 习水县| 鹿泉市| 秭归县| 宜宾市| 天气| 永泰县| 陆丰市| 东乡族自治县| 平和县| 师宗县| 苗栗县| 康平县| 襄城县| 珠海市| 赫章县| 阳西县| 修武县| 西平县| 霍邱县| 泰宁县| 乌苏市| 微山县| 明水县| 聂拉木县| 仁寿县| 延寿县| 青河县| 英德市| 静乐县| 武宣县| 阿拉善左旗| 环江|