g_malloc0 代码举例
时间: 2024-05-10 10:19:27 浏览: 126
!!malloc参考代码与注释.zip_ malloc_malloc
g_malloc0 是 GLib 库中的一个函数,用于动态分配内存并将其初始化为零。下面是一个简单的示例,演示了如何使用 g_malloc0 函数:
```c
#include <glib.h>
#include <stdio.h>
int main() {
// 分配一个包含 10 个整数的数组,并将其初始化为零
int *arr = (int*)g_malloc0(10 * sizeof(int));
// 输出数组的值
for (int i = 0; i < 10; i++) {
printf("%d ", arr[i]);
}
// 释放内存
g_free(arr);
return 0;
}
```
在这个示例中,我们首先使用 g_malloc0 函数分配了一个包含 10 个整数的数组,并将其初始化为零。然后,我们遍历数组并打印出每个元素的值。最后,我们使用 g_free 函数释放了内存。
阅读全文