IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> C++知识库 -> 4/14の折磨:string自行管理内存和read函数浅拷贝 -> 正文阅读

[C++知识库]4/14の折磨:string自行管理内存和read函数浅拷贝

问题代码:

#include<iostream>
#include<fstream>

using namespace std;
#define num 10
void CreateBiFile(string filename);
void ReadBiFile(string filename);
class Student
{
	string number;
	string name;
	string sex;
	int score;
public:
	Student(string nu = "", string na = "", string se = "", int s= 0);
	friend ostream& operator<<(ostream& out, const Student& s);
};
Student::Student(string nu, string na, string se, int s)    //构造函数
{
	number = nu;
	name = na;
	sex= se;
	score = s;
}

ostream& operator<<(ostream& out, const Student& s)  //重载输出运算符<<
{
	cout << s.number << " " << s.name << " " << s.sex << " " << s.score << endl;
	return out;
}

int main()
{
	CreateBiFile("stu.dat");
	ReadBiFile("stu.dat");
	return 0;
}

void CreateBiFile(string filename)
{
	ofstream out(filename,ios::binary);
	Student stu[3] = { Student("B21030209","jr","male",100),Student("B21030210","pyy","male",100),Student("B21030212","nysq","male",100) };//对象数组的初始化
	out.write((char*)stu,sizeof(Student)*3);      //两个实在参数自己填写
	out.close();
}

void ReadBiFile(string filename)
{
	Student stu[num] = {};
	int i = 0;
	ifstream in(filename,ios::binary);
	while (!in.eof()) //读出记录并显示
	{
		in.read((char*)&stu[i++], sizeof(Student));
	}
	for (int j = 0; j < i - 1; j++)
	{
		cout << stu[j];
	}
	//exit(1);
	in.close();
}

?关文件那边出现了问题!

?解释:

修改后的代码:

#include<iostream>
#include<fstream>
#include<string>

using namespace std;
const int num = 10;
void CreateBiFile(const char* filename);
void ReadBiFile(const char* filename);
class Student
{
	char* number;
	char* name;
	char* sex;
	int score;
public:
	Student(const char* nu = "", const char* na = "", const char* se = "", int s= 0);
	friend ostream& operator<<(ostream& out, const Student& s);
};
Student::Student(const char* nu, const char* na, const char* se, int s)    //构造函数
{
	number = new char[strlen(nu)+1];
	name = new char[strlen(na)+1];
	sex = new char[strlen(se)+1];
	strcpy(number,nu);
	strcpy(name,na);
	strcpy(sex, se);
	score = s;
}

ostream& operator<<(ostream& out, const Student& s)  //重载输出运算符<<
{
	cout << s.number << " " << s.name << " " << s.sex << " " << s.score << endl;
	return out;
}

int main()
{
	CreateBiFile("stu.txt");
	ReadBiFile("stu.txt");
	return 0;
}

void CreateBiFile(const char* filename)
{
	ofstream out(filename,ios::binary);
	Student stu[3] = { Student("B21030209","jr","male",100),Student("B21030210","pyy","male",100),Student("B21030212","nysq","male",100) };//对象数组的初始化
	out.write((char*)stu,sizeof(Student)*3);      //两个实在参数自己填写
	out.close();
}

void ReadBiFile(const char* filename)
{
	Student stu[num];
	int i = 0;
	ifstream in(filename,ios::binary);
	while (!in.eof()) //读出记录并显示
	{
		in.read((char*)&stu[i++], sizeof(Student));
	}
	for (int j = 0; j < i - 1; j++)
	{
		cout << stu[j];
	}
	in.close();
}

?其他感悟:

在用到文件的read()读取类的函数时,尽量用char型数组,不用string类型。

  C++知识库 最新文章
【C++】友元、嵌套类、异常、RTTI、类型转换
通讯录的思路与实现(C语言)
C++PrimerPlus 第七章 函数-C++的编程模块(
Problem C: 算法9-9~9-12:平衡二叉树的基本
MSVC C++ UTF-8编程
C++进阶 多态原理
简单string类c++实现
我的年度总结
【C语言】以深厚地基筑伟岸高楼-基础篇(六
c语言常见错误合集
上一篇文章      下一篇文章      查看所有文章
加:2022-04-18 17:22:53  更:2022-04-18 17:26:53 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/13 14:40:21-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码