我试图把一个点推向一系列的构件。 这部法典应当制造一系列的构件,写上斜体中的斜体,然后打印出(正在运行)。 然后,我想把这一系列的 st子传递给另一个功能,并打印出各种休战。
#define PORT_NUMBER 5100
#define MAX_CLIENTS 5
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <pthread.h>
typedef struct thread_args
{
int client_number;
int connected;
char client_name[1024];
} client;
void pass_func(client* clients[])
int main()
{
struct thread_args clients[MAX_CLIENTS];
int i;
for(i =0; i < MAX_CLIENTS; i++)
{
clients[i].client_number=i;
strcpy(clients[i].client_name, "BOBBY");
}
for(i =0; i < MAX_CLIENTS; i++)
{
printf("%d | %s
", clients[i].client_number=i, clients[i].client_name);
}
printf("
");
pass_func(&clients);
}
void pass_func(client* clients[])
{
int i;
for(i =0; i < MAX_CLIENTS; i++)
{
printf("%d | %s
", clients[i]->client_number=i, clients[i]->client_name);
}
}
这是产出:
$ gcc TEST.c -lpthread -o TEST.out
TEST.c: In function ‘main’:
TEST.c:41:3: warning: passing argument 1 of ‘pass_func’ from incompatible pointer type [enabled by default]
TEST.c:22:6: note: expected ‘struct thread_args **’ but argument is of type ‘struct thread_args (*)[5]’
$ ./TEST.out
0 | BOBBY
1 | BOBBY
2 | BOBBY
3 | BOBBY
4 | BOBBY
Segmentation fault
我做了大约一小时的研究,可以说明为什么不这样做。 我发现的大多数实例是C++,但不是C。 (我知道我所包括的许多头号档案对这项法典并不必要;这只是我原法典的一部分)。)