声明如下:
struct online
{
char name[20];
// char name_buf[20]; //发送目标的名字缓存区
char num; //客户端代号
long addr; //地址
int statue; //连接状态 1 online,0 offline
pthread_t tid[5]; //对应的线程号
int fd; //对应的文件描述符
int tid_num; //tid数组下标
} user[5];
函数引用如下: if(pthread_create(&(user[temp_online_number].tid[user[temp_online_number].tid_num]), NULL, (void *)chat, (void *)con_user))
提示错误: cannot convert to a pointer type
HUX布斯