结构指针数组和分配结构数据

时间:2011-09-25 15:04:42

标签: c pointers struct

我遇到了一个问题,或者我只是做错了,因为我是C和结构新手。我想采取如下文本文件:

3
Trev,CS,3.5
Joe,ART,2.5
Bob,ESC,1.0

并在第一行读取学生人数然后从那里收集学生信息并将其放入名为StudentData的结构中:

typedef struct StudentData{

    char* name;
    char* major;
    double gpa;

} Student;

我遇到问题的地方是在我看似将数据分配给单个结构之后,结构数据变得混乱。我已经确切地评论了发生了什么(或者至少我认为是什么)。希望阅读并不痛苦。

main(){
    int size, i;
    char* line = malloc(100);
    scanf("%d\n", &size);//get size
    char* tok;
    char* temp;
    Student* array[size]; //initialize array of Student pointers

    for(i = 0; i<size;i++){
      array[i] = malloc(sizeof(Student));//allocate memory to Student pointed to by array[i]
      array[i]->name = malloc(50); //allocate memory for Student's name
      array[i]->major = malloc(30);//allocate memory for Student's major
    }

    for(i = 0; i<size;i++){
      scanf("%s\n", line);//grab student info and put it in a string
      tok = strtok(line, ","); //tokenize string, taking name first
      array[i]->name = tok;//assign name to Student's name attribute
//    printf("%s\n",array[i]->name);//prints correct value
      line = strtok(NULL, ",");//tokenize
      array[i]->major = line;//assign major to Student's major attribute
//    printf("%s\n",array[i]->major);//prints correct value
      temp = strtok(NULL, ",");//tokenize
      array[i]->gpa = atof(temp);//assign gpa to Student's gpa attribute
//    printf("%.2f\n\n",array[i]->gpa); //prints correct value
    }

    for(i=0;i<size;i++){ //this loop is where the data becomes jumbled
      printf("%s\n",array[i]->name);
      printf("%s\n",array[i]->major);
      printf("%.2f\n\n",array[i]->gpa);
  }
}

输出如下:

Trev
Joe
3.50

Joe
Bob
2.50

Bob
ESC
1.00

我无法真正理解在分配值和打印它们之间在内存中发生了什么。如果有人能引导我解决这个问题,我将不胜感激。

由于

1 个答案:

答案 0 :(得分:3)

你不能像这样使用char *的常规作业。你需要使用strcpy。例如:

strcpy(array[i]->name,tok);

否则,您将使所有数组[i] - &gt;名称指向相同的字符串。