4

我正在尝试将指针传递给结构数组。这段代码应该创建一个结构数组,写入结构中的变量,然后将它们打印出来(有效)。然后我想将该结构数组的指针传递给另一个函数并打印出struts数组。

#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\n", clients[i].client_number=i, clients[i].client_name);
  }

  printf("\n\n");
  pass_func(&clients);
}

void pass_func(client* clients[])
{
  int i;
  for(i =0; i < MAX_CLIENTS; i++)
  {
     printf("%d | %s\n", 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 的。(是的,我知道我包含的许多头文件对于此代码来说不是必需的;这只是我原始代码的一部分。)

4

3 回答 3

13

pass_func需要一个指针数组client

void pass_func(client* clients[]);

但你通过了

pass_func(&clients);

指向 s 数组的指针client。所以 theclient clients[i]被解释为指向clientin的指针pass_func,但是位模式当然不是指向 的有效指针client,因此你试图访问你不应该访问的内存并得到一个段错误。

要么传递一个指针数组,要么声明pass_func

void pass_func(client *clients);

(然后pass_func(clients)在 main 中没有地址运算符的情况下通过)。

但是,您的编译器警告您传递不兼容的指针类型。

于 2012-04-21T01:19:21.437 回答
2
void pass_func(client* clients[])
{
  int i;
  for(i =0; i < MAX_CLIENTS; i++)
  {
     printf("%d | %s\n", (*clients)[i].client_number=i, (*clients)[i].client_name);
  }
}

这会很好。

于 2012-04-21T02:24:28.690 回答
1

您需要正确掌握基础知识...

您需要首先了解如何将数组传递给函数:最好通过这个

于 2012-04-21T02:46:28.277 回答