- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是一个对 GArray 进行排序的练习程序,我使用 sizeof() 来了解数组的大小。
从逻辑上思考,sizeof(x) 应该是 24,即 6 个整数 * 每个整数的大小,即 4 - 6*4。
但是当我将这些整数放入 GArray 时,大小为 8。
为什么是 8,为什么不是 32? .. 因为 g_array_new 以 2 的幂分配字节? 24 附近最接近的 2 的幂是 2^5,即 32
/*************************************************************************************************************
* FILE NAME : ex-garray-6.c
*
* DESCRIPTION : sort Garray using GCompareFunc (Not used in GIMP, Gaim or Evolution)
*
************************************************************************************************************/
#include<glib.h>
#include<stdio.h>
/*************************************************************************************************************
* FUNCTION NAME : print_arr
*
* DESCRIPTION : prints entire array using len and g_array_index
*
* RETURNS : void
*
************************************************************************************************************/
void print_arr(GArray* arr)
{
int i = 0;
printf("\n Array : \n");
for (i = 0; i < (arr->len); i++)
{
printf("%d\n", g_array_index(arr, int, i));
}
}
/*************************************************************************************************************
* FUNCTION NAME : compare_ints
*
* DESCRIPTION : utilized qsort() to sort elements of the unsorted array.
* arguments are two gpointers.They are typecasted to int pointers
* int the function
*
* RETURNS : int - -ve if first arg is smaller than second arg
* 0 if first arg is equal to second arg
* +ve - second arg is smaller than first arg
*
************************************************************************************************************/
int compare_ints( gpointer* a, gpointer* b)
{
int* x = (int*)a;
int* y = (int*)b;
return (*x - *y);
}
/*************************************************************************************************************
* FUNCTION NAME : main.c
*
* DESCRIPTION : main.c declares GArray,allocates memory to it, appends 6 integers into the array,* uses g_array_sort to print the array, uses print_arr function to print the array * frees array at end.
*
* RETURNS : SUCCESS
*
************************************************************************************************************/
int main(int argc, char** argv)
{
// 1. declare GArray pointer variable and allocate memory to it
GArray* arr = g_array_new(FALSE, FALSE, sizeof(int));
// g_array_set_size(arr,8); - didn't work to fix size to 8 bytes
// 2. initialize int array of 6 elements say x
int x[6] = {500,400, 500, 700, 200, 300};
// 3. append in the array
arr = g_array_insert_vals(arr,0, x, 6);
printf("\n size of x : %d \n size of arr : %d", sizeof(x), sizeof(arr));
// 4. print the array
print_arr(arr);
/* 5. sort the array using
g_array_sort(
<GArray pointer variable>,
(GCompareFunc)<name of the compare function>);
- compare function uses qsort()-
-returns -ve a<b
-returns 0 a = b
-returns +ve b = a
*/
/* 5.5 alternate sorting function -
g_array_sort_with_data(
<same as g_array_sort>,
<same as g_array_sort>,
<gpointer to user-data>); */
printf("\n Array after sorting \n ");
g_array_sort(arr, (GCompareFunc)compare_ints);
// 6. print garray
print_arr(arr);
// 7. free garray
g_array_free(arr, TRUE);
}
最佳答案
是的,我得到了答案:
GArray是一个结构体有 2 个元素,其中 1 个为 gchar 类型,另一个为 Gunit 类型
gchar 为 1 字节Gunit 为 4 个字节
所以 sizeof(GArray) 或 sizeof(arr) 在这里将是 1+4 = 5,然后将其扩展到最接近的 2 的幂,即 2^3 是 8 :)
关于c - 将 sizeof() 与普通数组和 garray 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41501068/
我想在 GArray 中添加一些字符串对象。但是当我阅读 API 手册时 g_array_new(),它在创建数组时寻找要添加的元素的大小,但是 不同的字符串对象有不同的长度,所以我该如何处理这个问题
当 g_array_append_val() 时会发生什么或 GLib 中的其他附加/前置函数之一,使 GArray 的长度大于 guint (unsigned int) 所能容纳的长度? 文档对此没
我有一些奇怪的 Glib 行为,在互联网上搜索了一下,发现 this Glib tutorial ,第二个代码块要具体: //ex-garray-2.c #include #include //
我创建 drvm *drv我的功能中的结构。此结构本身包含包含 malloc()-ed 的字段字段(uint32_t *buffer)。执行此操作的代码类似于: ... size_t elm_size
我有一个 GValue 的 GArray(全非零),它是在运行时用 g_array_append_val 分配的。我想知道如何找出最后一个元素的索引是什么,或者更准确地说,数组包含多少个元素。代码如下
我正在尝试将字符串映射到 GArrays使用GHashTable 。到目前为止,我还没有成功。 我像这样声明哈希表: hash_table = g_hash_table_new_full(g_str_
编译器说 GHashTable 未定义,但如果我在从数组检索 GHashTable 的代码上方使用它,则显然它已定义。到底是怎么回事?我很困惑。 gcc -Wall -o tht `pkg-confi
这是一个对 GArray 进行排序的练习程序,我使用 sizeof() 来了解数组的大小。 从逻辑上思考,sizeof(x) 应该是 24,即 6 个整数 * 每个整数的大小,即 4 - 6*4。 但
我想使用 glib 库的 GArray 将位置 x 的值设置为给定值。就像我使用 c-array 和 array[x]=5; 为什么我找不到执行此操作的函数?这不就是一个数组的意思吗?文档:https
我正在研究openface 。 Openface有unknown classification python cod e. 我正在测试lfw-classification-unknown.py的训练部
我正在尝试使用 GLib 作为替代方法来编写我自己的数据结构。我的目标是仅使用 glib 编写一个基于邻接表的简单图形数据结构。 现在的代码如下 #include #include struct
我是一名优秀的程序员,十分优秀!