我试图使用双指针结构作为结构数组。 当我在main()中编写整个代码时,它工作正常。 以下是工作代码:
xkumapu@lxapp-2 cat struct2.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <malloc.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <signal.h>
typedef struct conn_s{
int no;
char name[32];
}conn_t;
int main(){
int i=0, n;
conn_t **connections;
printf("How many students?\n");
scanf("%d", &n);
for(i=0;i<n;i++){
connections[i] = (conn_t*)malloc(sizeof(conn_t));
printf("Enter no,name of student\n");
scanf("%d%s", &connections[i]->no, &connections[i]->name);
}
printf("The student details you entered are");
for(i=0;i<n;i++){
printf("%d %s", connections[i]->no, connections[i]->name);
free(connections[i]);
}
return 1;
}
xkumapu@lxapp-2
xkumapu@lxapp-2 ./struct2
How many students?
3
Enter no,name of student
1 pavan
Enter no,name of student
2 suresh
Enter no,name of student
3 ramesh
The student details you entered are1 pavan2 suresh3 ramesh
但是,当我在一个函数中使用相同的代码时,它无法正常工作。
xkumapu@lxapp-2 cp struct2.c struct1.c
xkumapu@lxapp-2 vi struct1.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <malloc.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <signal.h>
typedef struct conn_s{
int no;
char name[32];
}conn_t;
int data(){
int i=0, n;
conn_t **connections;
printf("How many students?\n");
scanf("%d", &n);
for(i=0;i<n;i++){
connections[i] = (conn_t*)malloc(sizeof(conn_t));
printf("Enter no,name of student\n");
scanf("%d%s", &connections[i]->no, &connections[i]->name);
}
printf("The student details you entered are");
for(i=0;i<n;i++){
printf("%d %s", connections[i]->no, connections[i]->name);
free(connections[i]);
}
return 1;
}
int main(){
data();
return 1;
}
Entering Ex mode. Type "visual" to go to Normal mode.
:wq
"struct1.c" 41L, 874C written
xkumapu@lxapp-2 gcc -o struct123 struct1.c
xkumapu@lxapp-2 ./struct123
How many students?
3
Segmentation fault
xkumapu@lxapp-2
请帮助我理解这个问题。
答案 0 :(得分:2)
connections[i] = ...
此行从变量connections
读取,该变量未初始化。这会导致两个程序中出现未定义的行为。 (这意味着任何事情都可能发生,包括看起来“工作正常”。)
您可以通过执行
来解决此问题connections = malloc(n * sizeof *connections);
在循环之前。
顺便说一下:
<malloc.h>
不是标准标题malloc
scanf
可能失败,malloc
可能失败等)。1
不是便携式退出状态/ main
返回值(1
表示unix和windows上有错误,但唯一的可移植代码是0
和{{ 1}}表示成功,EXIT_SUCCESS
表示错误。)EXIT_FAILURE
传递给&connections[i]->name
scanf
是错误的:%s
需要%s
但char *
是&connections[i]->name
(对解决此问题,删除char (*)[32]
)