使用glib库的GArray我想将位置x的值设置为给定值。就像我使用c-array和array [x] = 5;
一样为什么我找不到任何功能呢?这不是阵列的意思吗?文档:https://developer.gnome.org/glib/stable/glib-Arrays.html
我可以删除旧值并插入新值。但这有点愚蠢。还有更好的方法吗?
更新
在Gnome Bugzilla上,这是通常的解释:
int *element = &g_array_index (array, int, i);
*element = 42;
答案 0 :(得分:2)
文档没有说清楚,但因为g_array_index
是一个宏,你可以用它来设置和获取。
g_array_index(foo, int, 0) = 23;
g_array_index(foo, int, 1) = 42;
不幸的是,不会更新或检查数组的大小有点击败GArray。您必须使用g_array_sized_new
或g_array_set_size
来确保分配的内存足够。
我找不到文档,也没有这方面的例子。除了description中的含糊提及你可以使用g_array_index
来“访问一个元素”之外,它应该被记录下来,但这后来与g_array_index
docs相矛盾,后者说它只会“返回”元件”。更好的是提供g_array_set_val
并且没有混淆。 Perhaps you can let them know?