ToB企服应用市场:ToB评测及商务社交产业平台

标题: c++文件输入与输出 [打印本页]

作者: 饭宝    时间: 2022-6-25 19:39
标题: c++文件输入与输出
基于流的文件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




欢迎光临 ToB企服应用市场:ToB评测及商务社交产业平台 (https://dis.qidao123.com/) Powered by Discuz! X3.4