【发布时间】:2016-10-06 19:03:30
【问题描述】:
所以我有那些在 .h
stable.h
// The symbol table.
typedef struct stable_s *SymbolTable;
// Data stored.
typedef union {
int i;
char *str;
void *p;
} EntryData;
// Return struct for stable_insert.
typedef struct {
int new; // Was a new entry created?
EntryData *data; // Data associated with entry.
} InsertionResult;
etc
然后在我的 .c
stable.c
etc
typedef struct {
char *key;
EntryData data;
} Entry;
struct stable_s { /* Indice hash */
char index;
int size;
void *pointer;
};
etc
EntryData *stable_find(SymbolTable table, const char *key){
int k;
char c;
if (key[0] >= 'A' && key[0] <= 'Z')
c = table[(key[0] - 65)].index;
else if (key[0] >= 'a' && key[0] <= 'z')
c = table[(key[0] - 141)].index;
else
c = table[26].index;
c -= 65;
if (table[c].size == 0)
return NULL;
k = busca_binaria(table[c].pointer, table[c].size, key);
if (strcmp(table[c]->pointer[k]->key, key) == 0)
return table[c]->pointer[k]->data;
return NULL;
}
gcc -std=c99 stable.c -o stable 给了我这些错误:
stable2.c: In function ‘stable_find’: stable2.c:128:24: error: invalid type argument of ‘->’ (have ‘struct stable_s’) if (strcmp(table[c]->pointer[k]->key, key) == 0) stable2.c:129:24: error: invalid type argument of ‘->’ (have ‘struct stable_s’) return table[c]->pointer[k]->data;
我错过了什么?我真的迷失了语法。
【问题讨论】:
-
SymbolTable是什么? -
你的编译器默认的
char类型是unsigned char吗?因为这个表达式key[0] - 141 -
@EugeneSh.:参见上面的 stable.h:
typedef struct stable_s *SymbolTable; -
@FredLarson 对。我的 Ctrl-F 出卖了我……
-
无论如何。
table[whatever]是结构体,不是指针,所以不要在上面使用->..
标签: c void-pointers dereference