C言語の文書(章の3)

3196 ワード

バイナリ・ファイル・アクション(および小さなアイテム)

#include 
#include 
#include 
int fwrite(void *buffer,int num_bytes,int count ,FILE *fp);
int fread(void *buffer,int num_bytes,int count ,FILE *fp) ;
  int   , / ; , 0;

 :  。
fread( , , , ) > 0 ; 
 。
fread 、fwrite  。

簡単な学生成績システム
typedef struct student     // 
{
  int num;            
  char name[30];
  char sex;
  float math;
  float english;
  float chinese;
}Stu;

typedef struct node         // 
{
  Stu data;
  struct node * next;
}Node;

void init()                  // 
{
  Stu stu[] = {
      { 01, "xiaoming", 'm', 100, 100,100 },
      { 02, "xiaohong", 'w', 100, 100,100 },
      { 03, "xiaodong", 'm', 100, 100,100 }
  };
  FILE* fp = fopen("stu.data", "wb+");
  if (NULL == fp)
      exit(1);

  fwrite((void*)stu, sizeof(stu), 1, fp);
  fclose(fp);
}

Node *createListFromFile()      // 
{
  Node *head = (Node*)malloc(sizeof(Node));
  head->next = NULL;
  FILE* fp = fopen("stu.data", "rb");
  if (NULL == fp)
      return NULL;

  Node * cur = (Node*)malloc(sizeof(Node));
  while (fread((void*)&cur->data, sizeof(Stu), 1, fp) > 0)  // 
  {
      cur->next = head->next;     // 
      head->next = cur;

      cur = (Node*)malloc(sizeof(Node));
  }
  free(cur);
  return head;
}

void displayListOfStu(Node *head)    // 
{
  head = head->next;

  while (head)
  {

      printf("num = %d name = %s, sex = %c,Math = %0.2f,Eng = %0.2f,Chi = %0.2f
", head->data.num, head->data.name, head->data.sex, head->data.math, head->data.english, head->data.chinese); head = head->next; } } void addListOfStu(Node *head) // { Node *node = (Node*)malloc(sizeof(Node)); printf(" :"); scanf("%d", &node->data.num); printf(" :"); scanf("%s", node->data.name); getchar(); printf(" :"); scanf("%c", &node->data.sex); printf(" :"); scanf("%f", &node->data.math); printf(" :"); scanf("%f", &node->data.english); printf(" :"); scanf("%f", &node->data.chinese); node->next = head->next; head->next = node; } void saveList2File(Node *head) { FILE*fp = fopen("stu.data", "wb"); if (fp == NULL) return exit(1); head = head->next; while (head) { fwrite((void*)&head->data, sizeof(Stu), 1, fp); head = head->next; } fclose(fp); } int main(void) // { init(); Node *head = createListFromFile(); displayListOfStu(head); addListOfStu(head); displayListOfStu(head); saveList2File(head); return 0; }

Cファイルの難点は、(1)ファイルの末尾の判断:a、ファイルの読み書きに対しては、一般的に-1が最適b、バイナリの読み書きに対しては、-1を判断しないでください.-1はバイナリに対して意味があるので、一般的にfeofで判断(2)改行文字の処理:a、テキストファイルの読み書きに対しては(この2つのフラグビットr,w)、一般的にはr b、バイナリ読み書きの場合(rb,wb)は、rには処理されません
汎用アクセスファイルのルール:(1)テキストファイルへのアクセス:フラグビット:r,w関数用:fgetc,getc,fputc,putc,fgets,fputs(2)アクセスバイナリファイル:フラグビット:rb,wb関数用:fwrite,fread