码迷,mamicode.com
首页 > 编程语言 > 详细

C++读写文件

时间:2019-09-18 10:48:39      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:std   close   line   while   cstring   namespace   algo   fstream   fst   

使用ifstream 然后对C++进行文件的读取

头文件

>#include<cstdio>
>#include<cmath>
>#include<cstring>
>#include<cstdlib>
>#include<algorithm>
>#include<iostream>
>#include<string>
>#include<fstream>
>using namespace std;

读取代码段

int main() {
    string buffer, filepath = "test.txt";
    ifstream myfile(filepath.c_str());
    //等同于 ifstream myfile("test.txt");

    while(getline(myfile, buffer)) {
        cout << buffer << endl;
    }
    myfile.close();
    return 0;
}

写入代码段

int main() {
    string filepath = "test.txt";
    //ofstream myfile("test.txt");
    ofstream myfile(filepath.c_str());

    myfile << "hbhh" << endl;
    myfile << "aaaaa" << endl;
    myfile.close();
    return 0;
}

C++读写文件

标签:std   close   line   while   cstring   namespace   algo   fstream   fst   

原文地址:https://www.cnblogs.com/zoey686/p/11539766.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!