编程语言
首页 > 编程语言> > C++文件最基础的操作【IO】

C++文件最基础的操作【IO】

作者:互联网

头文件fstream定义了三个类型来支持文件IO:

#include <iostream>
#include <string>
#include <sstream>
#include <fstream>
using namespace std;

int main()
{
	ofstream outfile("hello.txt");
	outfile << "this is a file" << endl;
	outfile.close();

	ifstream readfile("hello.txt");
	if (!readfile)
	{
		cerr << "no data ?" << endl;
		return -1;
	}
	string word;
	readfile >> word;
	readfile.close();

	cout << word;
	return 0;
}

在对应的文件夹下可以找到
在这里插入图片描述
hello.txt中的内容
在这里插入图片描述
程序运行结果
在这里插入图片描述

标签:文件,include,fstream,C++,给定,IO,txt,ofstream
来源: https://blog.csdn.net/Joy_Cheung666/article/details/120184776