温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

如何进行C++文件操作的应用函数介绍

发布时间:2021-10-27 18:35:14 来源:亿速云 阅读:92 作者:柒染 栏目:编程语言

今天就跟大家聊聊有关如何进行C++文件操作的应用函数介绍,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

C++编程语言应用方式灵活,可以被看做C语言的升级版本。我们可以通过这篇文章介绍的关于C++文件操作的相关方法来对这一计算机编程语言的相关应用技巧有一个初步的掌握,并从中加深对这一语言的认知程度。

1.C++文件操作中的函数功能

用来读写一个数据块。

2.一般调用形式

fread(buffer,size,count,fp);

fwrite(buffer,size,count,fp);

3.说明

(1)buffer:是一个指针,对fread来说,它是读入数据的存放地址。对fwrite来说,是要输出数据的地址。

(2)size:要读写的字节数;

(3)count:要进行读写多少个size字节的数据项;

(4)fp:文件型指针。

注意:1 完成次写操(fwrite())作后必须关闭流(fclose());

2 完成一次C++文件操作(fread())后,如果没有关闭流(fclose()),则指针(FILE * fp)自动向后移动前一次读写的长度,不关闭流继续下一次读操作则接着上次的输出继续输出;

3 fprintf() : 按格式输入到流,其原型是int fprintf(FILE *stream, const char *format[, argument, ...]);其用法和printf()相同,不过不是写到控制台,而是写到流罢了。注意的是返回值为此次操作写入到文件的字节数。如int c = fprintf(fp, "%s %s %d %f", str1,str2, a, b) ;str1:10字节;str2: 10字节;a:2字节;b:8字节,c为33,因为写入时不同的数据间自动加入一个空格。

文件使用之后一定要关闭,否则将不能正确显示内容.fwrite:读入两个学生信息然后用fwrite存入文件

fread:用fread从文件中读出学生信息。

fwrite.c  #include <stdio.h> #define SIZE 2  struct student_type  {  char name[10];  int num;  int age;  char addr[10];  }stud[SIZE];  void save()  {  FILE *fp;  int i;  if((fp=fopen("stu_list","wb"))==NULL)  {  printf("cant open the file");  exit(0);  }  for(i=0;i<SIZE;i++)  {  if(fwrite(&stud[i],sizeof(struct student_type),1,fp)!=1)  printf("file write error\n");  }  fclose(fp);  }  main()  {  int i;  for(i=0;i<SIZE;i++)  {  scanf("%s%d%d%s",&stud[i].name,&stud[i].num,&stud[i].age,&stud[i].addr);  save();  }  for(i=0;i<SIZE;i++)  {  printf("%s,%d,%d",stud[i].name,stud[i].num,stud[i].age,stud[i].addr);  }  }  fread.c  #include <stdio.h> #define SIZE 2  struct student_type  {  char name[10];  int num;  int age;  char addr[10];  }stud[SIZE];  void read()  {  FILE *fp;  int i;  if((fp=fopen("stu_list","rb"))==NULL)  {  printf("cant open the file");  exit(0);  }  for(i=0;i<SIZE;i++)  {  if(fread(&stud[i],sizeof(struct student_type),1,fp)!=1)  printf("file write error\n");  }  fclose(fp);  }  main()  {  int i;  read();  for(i=0;i<SIZE;i++)  {  printf("%s,%d,%d,%s",stud[i].name,stud[i].num,stud[i].age,stud[i].addr);  printf("\n");  }  }

看完上述内容,你们对如何进行C++文件操作的应用函数介绍有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注亿速云行业资讯频道,感谢大家的支持。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

c++
AI