C++读写文件

2020-12-13 13:49

阅读:512

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

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

头文件

>#include
>#include
>#include
>#include
>#include
>#include
>#include
>#include
>using namespace std;

读取代码段

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

    while(getline(myfile, buffer)) {
        cout 

写入代码段

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

    myfile 

C++读写文件

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

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


评论


亲,登录后才可以留言!