C++实验 | 定义流对象,实现用write函数将学生信息以二进制方式写到磁盘文件stu.dat中

定义学生类,该类包含学生的一些基本信息:学号、姓名、性别、成绩。定义流对象,实现用write函数将学生信息以二进制方式写到磁盘文件stu.dat中。再用read将磁盘中的学生信息读到内存显示在屏幕上。


#include<iostream>
#include<fstream>
#include<string>
using namespace std;
class Student
{
	char num[10];
	char name[10];
	char sex[3];
	int score;
public:
	Student():num( ),name(),sex(),score(0)
	{}
	Student(const char *nu , const char *na ,const char *se ,const int s = 0)
	{
		strcpy(num, nu);
		strcpy(name, na);
		strcpy(sex, se);
		score = s;
	}
	friend ostream & operator<<(ostream &out, const Student &s)
	{
		out << s.num << endl;
		out << s.name << endl;
		out << s.sex << endl;
		out << s.score << endl;
		return out;
	}
};
void CreateBiFile(const char *filename)
{
	ofstream out(filename);
	Student stu[3] = { Student("B16112112","孟AB","女",95),Student("B16112113","孟CD","男",100),Student("B16112114","孟EF","男",92) };
	out.write((char *)stu, sizeof(Student) * 3);
	out.close();
}
void ReadBiFile(const char *filename)
{
	Student stu[5];
	int i = 0;
	ifstream in(filename);
	while (!in.eof())
	{
		in.read((char *)&stu[i++], sizeof(Student));
	}
	for (int j = 0; j < i - 1; j++)
		cout << stu[j];
	in.close();
}
int main()
{
	CreateBiFile("F:\\stu.dat");
	ReadBiFile("F:\\stu.dat");
	return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值