如何用c++中的read函数读取文件中的数据?

如何用c++中的read函数读取文件中的数据?


慕村225694
浏览 1436回答 3
3回答

炎炎设计

#include <fstream>istream& read( char* buffer, streamsize&nbsp;num&nbsp;);ifstream fin( "/tmp/data.txt" );ofstream fout( "/tmp/results.txt",&nbsp;ios::app&nbsp;);while( fin >> temp )fout << temp + 2 << endl;fin.close();fout.close();

白板的微信

先用int fd=open(“filepath”)打开文件;获得文件描述符然后read(fd,buf,sizeof(buf));
打开App,查看更多内容
随时随地看视频慕课网APP