我们可以使用C中的函数指针调用函数吗?

时间:2008-10-31 04:11:10

标签: c pointers function-pointers

我们可以使用函数指针调用函数吗?如果是的话怎么样?

4 个答案:

答案 0 :(得分:13)

是。琐碎的例子:


// Functions that will be executed via pointer.
int add(int i, int j) { return i+j; }
int subtract(int i, int j) {return i-j; }

// Enum selects one of the functions
typedef enum {
  ADD,
  SUBTRACT
} OP;

// Calculate the sum or difference of two ints.
int math(int i, int j, OP op)
{
   int (*func)(int i, int j);    // Function pointer.

   // Set the function pointer based on the specified operation.
   switch (op)
   {
   case ADD:       func = add;       break;
   case SUBTRACT:  func = subtract;  break;
   default:
        // Handle error
   }

   return (*func)(i, j);  // Call the selected function.
}

答案 1 :(得分:4)

是。这是一个带有示例的good tutorial

答案 2 :(得分:2)

是的,你可以。

答案 3 :(得分:1)

是。一个例子:

在代码之前......

typedef int ( _stdcall *FilterTypeTranslatorType )
    (
        int TypeOfImportRecord,
        PMAType *PMA
    );


FilterTypeTranslatorType    FilterTypeTranslator = {NULL};

现在在代码中......

PMAType *PMA;
HANDLE hFilterDll;

// assume DLL loaded
// Now find the address...
...
        FilterTypeTranslator[TheGroup] =
            ( FilterTypeTranslatorType ) GetProcAddress( hFilterDll,
                                                         "FilterTypeTranslator" );
...
// now call it


FilterTypeTranslator(1,PMA);
...