c++流
IO :向设备输入数据和输出数据
C++的IO流
设备:
- 文件
- 控制台
- 特定的数据类型(stringstream)
c++中,必须通过特定的已经定义好的类, 来处理IO(输入输出)
文件流
文件流: 对文件进行读写操作
头文件:
类库:
ifstream 对文件输入(读文件)
ofstream 对文件输出(写文件)
fstream 对文件输入或输出
对文本流读写
模式标志 | 描述 |
---|---|
ios::in | 读方式打开文件 |
ios:out | 写方式打开文件 |
ios::trunc | 如果此文件已经存在, 就会打开文件之前把文件长度截断为0 |
ios::app | 尾部最加方式(在尾部写入) |
ios::ate | 文件打开后, 定位到文件尾 |
ios::binary | 二进制方式(默认是文本方式) |
以上打开方式, 可以使用位操作 | 组合起来文章来源:https://www.toymoban.com/news/detail-634466.html
###写文本文件文章来源地址https://www.toymoban.com/news/detail-634466.html
#include <iostream>
#include <fstream>//流
#include <string>
#include <stdlib.h>
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 <fstream>
#include <iostream>
#include <string>
using namespace std;
int main()
{
string name;
int age;
ifstream infile;
infile.open("user.txt");
while (1) {
infile >> name;
if (infile.eof())
到了这里,关于c++文件流详细笔记的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!