c++文件流详细笔记

c++流

IO :向设备输入数据和输出数据

C++的IO流
在这里插入图片描述

设备:

  1. 文件
  2. 控制台
  3. 特定的数据类型(stringstream)

c++中,必须通过特定的已经定义好的类, 来处理IO(输入输出)

c++文件流详细笔记_第1张图片

文件流

文件流: 对文件进行读写操作

头文件:

类库:

ifstream 对文件输入(读文件)

ofstream 对文件输出(写文件)

fstream 对文件输入或输出

对文本流读写

模式标志 描述
ios::in 读方式打开文件
ios:out 写方式打开文件
ios::trunc 如果此文件已经存在, 就会打开文件之前把文件长度截断为0
ios::app 尾部最加方式(在尾部写入)
ios::ate 文件打开后, 定位到文件尾
ios::binary 二进制方式(默认是文本方式)

以上打开方式, 可以使用位操作 | 组合起来

###写文本文件

	#include 
	#include //流 
	#include 
	#include 
 
	using namespace std;
 
	int main(void) {
   

		//ofstream Outfile;//写
		fstream Outfile;//可读可写
		Outfile.open("user.txt",ios::out|ios::trunc);

		string name;
		int age;

		while (true)
		{
   
			cout << "请输入姓名:[ctrl + z 退出]" << endl;
			cin >> name;
			if (cin.eof()) {
   
				break;
			}
			Outfile << name<<"\t";//写入文件

			cout << "请输入年龄:";
			cin >> age;

			Outfile << age << endl;



		}
		//关闭打开的文件
		Outfile.close();
	}


读文本文件

#include 
#include 
#include 

using namespace std;

int main()
{
   
	string name;
	int age;
	ifstream infile;
	infile.open("user.txt");

	while (1) {
   
		infile >> name;
		if (infile.eof()) 

你可能感兴趣的:(c++,笔记,cocoa)