谁能举几个简单的例子说说c++文件流ifstream和ofstream怎么用?

rt... rt 展开
 我来答
紫翼魔狼
2011-12-07 · TA获得超过4344个赞
知道大有可为答主
回答量:1413
采纳率:42%
帮助的人:570万
展开全部
去C++的网站,基本各个库函数的例子都有,不过需要你会英语。请看参考资料链接。
// opening and closing a file
#include <iostream>
#include <fstream>
using namespace std;
int main () {
ofstream outfile;
outfile.open ("test.txt");
// >> i/o operations here <<
outfile.close();
return 0;
}

// print the content of a text file.
#include <iostream>
#include <fstream>
using namespace std;
int main () {
ifstream infile;
infile.open ("test.txt", ifstream::in);
int ch = infile.get();
while (infile.good()) {
cout << (char) ch;
ch = infile.get();
}
infile.close();
return 0;
}

参考资料: http://www.cplusplus.com/reference/iostream/ifstream/open/

fancy1228
2011-12-07 · TA获得超过317个赞
知道小有建树答主
回答量:437
采纳率:0%
帮助的人:331万
展开全部
#include <iostream>
#include <fstream>
using namespace std;

int main () {

ifstream infile ( "input.txt" );
ofstream outfile ("output.txt");

if (infile.is_open() && outfile.is_open())
outfile << "both files are open.\n";

infile.close();
outfile.close();

return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
perch778
2011-12-07 · 超过13用户采纳过TA的回答
知道答主
回答量:102
采纳率:0%
帮助的人:91.7万
展开全部
输出文件流 output file stream 用于向文件写数据(输出到文件) fstream 文件流,可以输入也可以输出,是上面两个的合体
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式