c++,文件流对象与文件流,文件的关系。

 我来答
折柳成萌
高粉答主

2017-09-15 · 繁杂信息太多,你要学会辨别
知道顶级答主
回答量:4.4万
采纳率:96%
帮助的人:6195万
展开全部
ifstream 输入文件流 input file stream 用于从文件读数据(从文件读入)
ofstream 输出文件流 output file stream 用于向文件写数据(输出到文件)

举个例子
#include <iostream>
#include <fstream>
using namespace std;

int main()
{
int a = 3, b = 5, c, d;

fstream x ("kdjf.dat", ios::out|ios::binary);
if(x.fail())
{
cout << " open file fail "<<endl;
return -1;
}

x.write((const char *)&a, sizeof(int));
x.write((const char *)&b, sizeof(int));
x.close();

x.open("kdjf.dat", ios::in);
if(x.fail())
{
cout << " open file fail "<<endl;
return -1;
}
x.read((char *)&c, sizeof(int));
x.read((char *)&d, sizeof(int));
x.close();

cout<< c<<endl;
cout<<d<<endl;
return 0;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式