如何避免C中函数指针的全局变量

时间:2012-12-09 05:35:42

标签: c struct

我正在使用全局变量z作为计数器。有没有办法使用MyStruct len作为我的计数器呢?我宁愿不使用全局变量。

#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <glib.h>

typedef struct st { 
    char *key;
    char *str;
    int len;
} MyStruct;

int z = 0;
static void hash2struct (gpointer key, gpointer value, gpointer data) {
    MyStruct **s = data; 
    gchar *k = (gchar *) key;
    gchar *h = (gchar *) value;
    s[z]->key = strdup(k);
    s[z]->str =strdup(h);
    z++;
}

int main(int argc, char *argv[]){
    int i;

    GHashTable *hash = g_hash_table_new(g_str_hash, g_str_equal);

    g_hash_table_insert(hash, "Virginia", "Richmond");
    g_hash_table_insert(hash, "Texas", "Austin");
    g_hash_table_insert(hash, "Ohio", "Columbus");

    MyStruct **s = malloc(sizeof(MyStruct) * 3);
    for(i = 0; i < 3; i++) {
        s[i] = malloc(sizeof(MyStruct)); 
    }
    g_hash_table_foreach(hash, hash2struct, s); 

    for(i = 0; i < 3; i++)
        printf("%s %s\n", s[i]->str, s[i]->key);

    for(i = 0; i < 3; i++) {
        free(s[i]->str);
        free(s[i]->key);
        free(s[i]);
    }
    free(s);
    g_hash_table_destroy(hash);
    return 0;
}

1 个答案:

答案 0 :(得分:2)

您可能想象z跟踪分配的数组中使用的单元格数量。如果您试图将值粘贴到单个MyStruct中,则可能存在多个不同的值。

相反,请考虑您可以打包数组并且它是计数器(实际上是构建动态数组类型):

struct {
   int length;
   MyStruct *ary;
} MyStructDArray;

他们保留了这个东西的一个实例并将那个传递给你的hash2struct例程。