您好我想知道是否可以将浮动作为键存入GhashTable,因为没有GFLOAT_TO_POINTER宏方法。
我正在关注IBM http://www.ibm.com/developerworks/linux/tutorials/l-glib/section5.html在线发现的教程,但我似乎找不到使用浮动键作为密钥的方法。
任何帮助都会非常感谢!
typedef struct Settings settings;
typedef struct Preset preset;
struct Gnomeradio_Settings
{
GList *presets;
};
struct Preset
{
gchar *name;
gfloat freq;
};
我想将settings.presets列表中的所有freq作为GHashTable中的键
GHashTable *hash;
GList *node;
hash = g_hash_table_new (g_double_hash, g_double_equal);
for (node = settings.presets; node; node = node->next) {
preset *ps;
gfloat *f;
ps = (preset *) node->data;
f = g_malloc0 (sizeof (gfloat));
*f = ps->freq;
g_hash_table_insert (hash, f, NULL);
}
void printf_key (gpointer key, gpointer value, gpointer user_data)
{
printf("\t%s\n", (char *) key);
}
void printf_hash_table (GHashTable* hash_table)
{
g_hash_table_foreach (hash_table, printf_key, NULL);
}
printf_hash_table (hash);
但没有成功!
此印刷品:
���B
ff�B
ff�B
���B
ff�B
f��B
f��B
���B
33�B
ff�B
�L�B
���B
�̲B
答案 0 :(得分:1)
除了打印出键值的例程之外,您的代码对我来说是正确的。我认为你的意思是这个,它会将每个gfloat
值输出为字符串:
void printf_key (gpointer key, gpointer value, gpointer user_data)
{
printf("\t%f\n", *(gfloat *) key);
}
为了避免内存泄漏,您可能还应该像这样创建哈希表,以便在销毁表时(或插入重复键)自动释放为每个键分配的内存:
hash = g_hash_table_new_full (g_double_hash, g_double_equal, g_free, NULL);