栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

C++ 基础将数据 以二进制的方式写入文件

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

C++ 基础将数据 以二进制的方式写入文件

// BinaryStorageData.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "iostream"

//-- 要想将结构体变量数据存储进文件中,结构体中不能有指针类型成员
struct CStudent 
{
	TCHAR szName[10];
	int iAge;
};
#define FILEPATH  _T("struct.bin")
int _tmain(int argc, _TCHAR* argv[])
{
	//-- 构建变量
	CStudent cStu[2];
	wcscpy_s(cStu[0].szName, _T("张三"));
	cStu[0].iAge = 100;

	wcscpy_s(cStu[1].szName, _T("li三"));
	cStu[1].iAge = 10;

	FILE *fp = nullptr;
	_tfopen_s(&fp, FILEPATH, _T("wb"));
	if (nullptr == fp)
	{
		std::cout << "打开文件失败" << std::endl;
	}
	else
	{
		fwrite(&cStu, sizeof(CStudent), 2, fp);
		fclose(fp);
	}
	getchar();

	_tfopen_s(&fp, FILEPATH, _T("rb"));
	if (fp != nullptr)
	{
		CStudent cStuTemp[2];
		fread(&cStuTemp, sizeof(CStudent), 2, fp);
		fclose(fp);
	}
	return 0;
}


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/352541.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号