c++,文件流对象与文件流,文件的关系。
1个回答
展开全部
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;
}
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;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询