通过指针访问结构的成员会导致错误

时间:2013-05-29 16:41:07

标签: c pointers error-handling struct

这是我写的结构。

typedef struct {
    int index=NULL;
    int sd;
    pthread_t tid;
    char* name;
}client_t;

接下来我正在制作这些结构的数组。

static client_t *clients[MAXCLIENTS];

现在在main函数中,我根据数组中的位置为这些结构分配值。

    clients[freeslot]->index=freeslot;
    clients[freeslot]->sd=connfd;
    clients[freeslot]->tid=syscall(SYS_gettid);
    clients[freeslot]->name=threadnames[freeslot];  

当我编译时,我收到这些错误消息。

code.c:185:12: error: ‘client_t’ has no member named ‘index’
code.c:186:19: error: ‘client_t’ has no member named ‘sd’
code.c:187:19: error: ‘client_t’ has no member named ‘tid’
code.c:188:19: error: ‘client_t’ has no member named ‘name’

我对这些错误消息感到困惑。我是否以错误的方式分配了值?

1 个答案:

答案 0 :(得分:2)

结构中不允许分配。尝试在结构外部将索引分配给NULL。