谭浩强C++课后习题44——对二进制文件的操作(1)
题目描述:有5个学生的数据,要求:
(1)把它们存到磁盘文件中。
(2)将磁盘文件中的第1,3,5个学生数据读入程序,并显示出来。
(3)将第3个学生的数据修改后存回磁盘文件中的原有位置。
(4)从磁盘文件读入修改后的5个学生的数据并显示出来。
#include<iostream>
#include<fstream>
using namespace std;
//定义结构体
struct student {
int num;
string name;
double score;
};
int main() {
student stu[5] = { 1,"aaa",60,2,"bbb",90,3,"ccc",80,4,"ddd",65,5,"eee",98 };
//创建二进制文件流对象
fstream iofile("d1.txt", ios::out | ios::in | ios::binary);
if (!iofile) {
cerr << "open error!" << endl;
exit(1);
}
//向文件中写入5个学生数据
for (int i = 0;i < 5;i++) {
iofile.write((char*)&stu[i], sizeof(stu[i]));
}
student stu1[5];
for (int i = 0;i < 5;i = i + 2) {
//定位
iofile.seekg(i * sizeof(stu[i]), ios::beg);
//读取数据5
iofile.read((char*)&stu1[i / 2], sizeof(stu1[0]));
cout << stu1[i/2].num << " " << stu1[i/2].name << " " << stu1[i/2].score << endl;
}
//修改数据
stu[2].name = "abc";
stu[2].score = 100;
//定位
iofile.seekp(2 * sizeof(stu[0]), ios::beg);
//写入新数据
iofile.write((char*)&stu[2], sizeof(stu[2]));
iofile.seekg(0, ios::beg);
//读出所有数据
for (int i = 0;i < 5;i++) {
iofile.read((char*)&stu[i], sizeof(stu[i]));
cout << stu[i].num << " " << stu[i].name << " " << stu[i].score << endl;
}
}
运行结果: