文件读写操作

本文介绍了C++中文件操作的基本步骤,如使用fopen进行文件读写,特别关注了如何通过结构体和多态处理数据。还展示了如何使用fstream进行文件操作,并演示了如何解析和保存学生分数数据,涉及继承和虚函数的应用。
摘要由CSDN通过智能技术生成
#include<iostream>
using namespace std;
int main()
{
	FILE *fp;
	//fopen(文件路径,打开方式) 
	//r只读	w写 a追加方式打开 
	fp=fopen("data2.txt","r");      //相对位置,也可以绝对位置 
	if(fp==NULL)
	{
		cout<<"文件读取失败";
		return -1; 
	}
	else
	{
		cout<<"文件读取成功"<<fp; 
	}
	fclose(fp);
	return 0;
} 

 

注意编码形式

多态:

1.父类指针指向子类对象

2.虚函数的重写

3.继承关系

 代码:

#include<iostream>
using namespace std;
int ma1in()
{
	FILE *fp;
	int num=0;
	char ch;
	//fopen(文件路径,打开方式) 
	//r只读	w写 a追加方式打开 
	fp=fopen("astr.txt","r");      //相对位置,也可以绝对位置 
	if(fp==NULL)
	{
		cout<<"文件读取失败"<<endl;
		return -1; 
	}
	else
	{
		cout<<"文件读取成功"<<endl; 
	}
	while((ch=fgetc(fp))!=EOF){
		if(ch==' '||ch=='\n'){
			num++;	
		}
	}
	cout<<"字符串个数为:"<<num+1;
	fclose(fp);
	
	return 0;
}

 代码:

注释的地方没有用流会保存乱码,不知道为啥。.c_str是因为string是c++的,而文件保存是c的东西。

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<iostream>
#include <fstream>
using namespace std;
struct score
{
	string name;
	int Chinese;
	int Math;
	int ScoreAll;
};
int main(void)
{
	//FILE *fp,*fp1;
	//char ch;
	//struct score nums[100];
	//
	//fp=fopen("Student.txt","r");      //相对位置,也可以绝对位置 
	//if(fp==NULL)
	//{
	//	cout<<"Student文件读取失败"<<endl;
	//}
	//else
	//{
	//	cout<<"Student文件读取成功"<<endl; 
	//}
	//
	//fp1=fopen("Result.txt","w");      //相对位置,也可以绝对位置 
	//if(fp1==NULL)
	//{
	//	cout<<"Result文件读取失败"<<endl;
	//}
	//else
	//{
	//	cout<<"Result文件读取成功"<<endl; 
	//}

	//
	//int i=0;
	//while(fscanf(fp, "%s %d %d", nums[i].name.c_str(), &nums[i].Chinese, &nums[i].Math)!=EOF){
	//	 
	//	fscanf(fp,"%s %d %d\n",nums[i].name.c_str(),&nums[i].Chinese,&nums[i].Math);
	//	cout<<nums[i].name.c_str()<<" "<<nums[i].Chinese<<" "<<nums[i].Math<<endl;
	//	nums[i].ScoreAll=nums[i].Chinese+nums[i].Math;	
	//	fprintf(fp1,"%s %d %d %d\n",nums[i].name.c_str(),nums[i].Chinese,nums[i].Math,nums[i].ScoreAll);		
	//	i++;

	//}
 //   fclose(fp);
 //   fclose(fp1);
	fstream fp("Student.txt",ios::in);
	fstream fp1("Result.txt", ios::out);
	struct score nums[100];
	if (!fp)
	{
		cout << "Student文件读取失败" << endl;
	}
	else
	{
		cout << "Student文件读取成功" << endl;
	}
	if (!fp1)
	{
		cout << "Result文件读取失败" << endl;
	}
	else
	{
		cout << "Result文件读取成功" << endl;
	}

	int i = 0;
	while (!fp.eof())
	{
		fp >> nums[i].name >> nums[i].Chinese >> nums[i].Math;
		cout << nums[i].name.c_str() << " " << nums[i].Chinese << " " << nums[i].Math << endl;
		nums[i].ScoreAll=nums[i].Chinese+nums[i].Math;	
		fp1 << nums[i].name << " " << nums[i].Chinese << " " << nums[i].Math << " " << nums[i].ScoreAll << endl;
	}
	fp.close();
	fp1.close();
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

猪八戒1.0

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值