1

伙计们,所以我正在处理 Web 服务分配,我让服务器发出随机的东西并读取 uri,但现在我想让服务器根据它在 uri 中读取的内容运行不同的功能。我知道我们可以使用函数指针来做到这一点,但我不确定如何读取 char* 并将其分配给函数指针并让它调用该函数。我正在尝试做的示例:http: //pastebin.com/FadCVH0h

我可以使用我相信的 switch 语句,但想知道是否有更好的方法。

4

2 回答 2

3

对于这样的事情,您将需要一个将char *字符串映射到函数指针的表。当您将函数指针分配给字符串时,程序会出现段错误,因为从技术上讲,函数指针不是字符串。

注意:以下程序仅用于演示目的。不涉及边界检查,它包含硬编码值和幻数

现在:

void print1()
{
   printf("here");
}

void print2() 
{
   printf("Hello world");
}
struct Table {
  char ptr[100];
  void (*funcptr)(void)
}table[100] = {
{"here", print1},
{"hw", helloWorld}
};

int main(int argc, char *argv[])
{
   int i = 0;
   for(i = 0; i < 2; i++){
      if(!strcmp(argv[1],table[i].ptr) { table[i].funcptr(); return 0;}
   }
   return 0;
}
于 2013-02-22T18:56:23.113 回答
0

我会给你一个非常简单的例子,我认为它有助于理解 C 中的函数指针有多好。(例如,如果你想制作一个 shell)

例如,如果您有这样的结构:

typedef struct s_function_pointer
{
    char*      cmp_string;
    int        (*function)(char* line);
}              t_function_pointer;

然后,您可以设置要浏览的 t_function_pointer 数组:

int     ls_function(char* line)
{
      // do whatever you want with your ls function to parse line
      return 0;
}

int     echo_function(char* line)
{
      // do whatever you want with your echo function to parse line
      return 0;
}

void    treat_input(t_function_pointer* functions, char* line)
{
       int    counter;
       int    builtin_size;

       builtin_size = 0;
       counter = 0;
       while (functions[counter].cmp_string != NULL)
       {
             builtin_size = strlen(functions[counter].cmp_string);
             if (strncmp(functions[counter].cmp_string, line, builtin_size) == 0)
             {
                   if (functions[counter].function(line + builtin_size) < 0)
                          printf("An error has occured\n");
             }
             counter = counter + 1;
       }
}

int     main(void)
{
     t_function_pointer      functions[] = {{"ls", &ls_function},
                                            {"echo", &echo_function},
                                            {NULL, NULL}};
     // Of course i'm not gonna do the input treatment part, but just guess it was here, and you'd call treat_input with each line you receive.
     treat_input(functions, "ls -laR");
     treat_input(functions, "echo helloworld");
     return 0;
}

希望这可以帮助 !

于 2013-02-22T19:08:06.633 回答