C/C++教程

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

本文主要是介绍C++文件最基础的操作【IO】,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

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

  • ifstream从一个给定文件读取数据。
  • ofstream向一个给定文件写入数据。
  • fstream可以读写给定文件。
#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中的内容
在这里插入图片描述
程序运行结果
在这里插入图片描述

这篇关于C++文件最基础的操作【IO】的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!