C++文件的数据写入和文件的数据读取的方法实现

目录

  • 一:没有数据,准备数据,写入文件
  • 二:读文件操作

一:没有数据,准备数据,写入文件 【C++文件的数据写入和文件的数据读取的方法实现】1.main.cpp
#includeusing namespace std; #include#include#include#include"CData.h"#include"CStaff.h" int main(){ CData::userInit(); //数据初始化 return 0; }

2.CStaff.h
#ifndef CSTAFF_H#define CSTAFF_H#define ADMIN 1#define MANAGER 2#define WAITER 3#include#includeusing namespace std; class Staff{public: Staff(); Staff(int id,string name,string pwd,int prole); ~Staff(); int getId(); string getName(); string getPwd(); int getRole(); private: int ID; string name; string pwd; int role; }; #endif

3.CStaff.cpp
#include"CStaff.h"#includeusing namespace std; Staff::Staff(){} Staff::Staff(int id,string name,string pwd,int prole){ this->ID = id; this->name = name; this->pwd = pwd; this->role = prole; } int Staff::getId(){ return this->ID; } string Staff::getName(){ return this->name; } string Staff::getPwd(){ return this->pwd; } int Staff::getRole(){ return this->role; } Staff::~Staff(){}

4.CData.h
#ifndef CDATA_H#define CDATA_H#include#include"CStaff.h" //专门用来做数据准备文件存储在磁盘中 程序运行在内存中//缓存区 链表 向量适合什么样的容器class CData{public: //静态:不通过对象 属于类 类名::静态成员/静态函数 static list staffList; static void userInit(); //用户数据初始化}; #endif

5.CData.cpp
#include"CData.h"#include#includeusing namespace std; list CData::staffList; //静态成员的初始化 //实现类的静态函数void CData::userInit(){ /* 1.从文件中读取数据 存入list 2.如果没有数据 先预定义一些数据写入文件 存储list3个 3.如果有数据 读取出来存入list */ fstream fs; //文件流对象in从文件中读出 out写入文件 app追加 fs.open("user.txt",fstream::in | fstream::out |fstream::app); //目标读文件 文件指示器需要定在开头 //如果没有数据 定位到文件尾部 获取文件大小 fs.seekg(0, ios::end); //计算文件中的字节数 int count = fs.tellg(); //创建一个迭代器 list::iterator it; if(count<=0) {cout<<"没有数据,准备数据,写入文件"<
结果:
C++文件的数据写入和文件的数据读取的方法实现
文章图片


二:读文件操作 CData.cpp
#include"CData.h"#include#includeusing namespace std; list CData::staffList; //静态成员的初始化 //实现类的静态函数void CData::userInit(){ /* 1.从文件中读取数据 存入list 2.如果没有数据 先预定义一些数据写入文件 存储list3个 3.如果有数据 读取出来存入list */ fstream fs; //文件流对象in从文件中读出 out写入文件 app追加 fs.open("user.txt",fstream::in | fstream::out |fstream::app); //目标读文件 文件指示器需要定在开头 //如果没有数据 定位到文件尾部获取文件大小 fs.seekg(0, ios::end); //计算文件中的字节数 int count = fs.tellg(); //创建一个迭代器 list::iterator it; if(count<=0) {cout<<"没有数据,准备数据,写入文件"<
C++文件的数据写入和文件的数据读取的方法实现
文章图片

结果:读到的是文件中的正确信息
到此这篇关于C++文件的数据写入和文件的数据读取的方法实现的文章就介绍到这了,更多相关C++文件数据写入和读取内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    推荐阅读