我已经在C语言中实现了一个队列。请考虑以下代码:
#include <stdio.h>
#include <stdlib.h>
typedef struct queue queue;
struct queue {
int len;
int head;
int tail;
int* array;
};
int main(int argc, char* argv[argc+1]) {
int len = 12;
queue* q = malloc(sizeof(q));
*q = (queue){
.array = calloc(len, sizeof(int)),
.len = len,
};
for (int i = 0; i < len; i += 1) {
printf("%d\n", q->array[i]);
}
free(q->array);
free(q);
return EXIT_SUCCESS;
}
我使用calloc()在结构中初始化了一个数组,但是该数组的某些值不为零。
$ clang -Wall -O0 -g -o queue.o queue.c && ./queue.o
952118112
32728
0
0
0
0
0
0
0
0
0
0
那是为什么?
答案 0 :(得分:1)
此内存分配
queue* q = malloc(sizeof(q));
是错误的。它仅为指针分配内存,而不为队列类型的对象分配内存。
代写
queue* q = malloc(sizeof(*q));