调用struct中的指针的calloc()在clang上不起作用

时间:2019-10-14 12:33:11

标签: c malloc clang calloc

我已经在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

那是为什么?

1 个答案:

答案 0 :(得分:1)

此内存分配

queue* q = malloc(sizeof(q));

是错误的。它仅为指针分配内存,而不为队列类型的对象分配内存。

代写

queue* q = malloc(sizeof(*q));