c++文件输入与输出

饭宝  金牌会员 | 2022-6-25 19:39:41 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 822|帖子 822|积分 2466

基于流的文件IO

头文件
ofstream : 写文件
ifstream : 读文件
fstream : 读写文件
[code]using namespace std;//打开文件std::ifstream fin("xxx.txt");//std::ifstream fin;//fin.open("xxx.txt");std::ofstream fout("xxxx.txt");if (!fin.is_open())  //判断文件是否打开成功{    cout  ch;              //read a character from the filechar buf[80];fin >> buf;             //read a word from the filefin.getline(buf, 80);   //read a line from the filestring line;getline(fin, line);     //read from a file to a string objectfout
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

饭宝

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表