vote up 2 vote down star

how to use array of function pointers in c?

how to initialize them?

flag

3 Answers

vote up 6 vote down

You have a good example here (Array of Function pointers), with the syntax detailed.

int sum(int a, int b);
int subtract(int a, int b);
int mul(int a, int b);
int div(int a, int b);

int (*p[4]) (int x, int y);

int main(void)
{
  int result;
  int i, j, op;

  p[0] = sum; /* address of sum() */
  p[1] = subtract; /* address of subtract() */
  p[2] = mul; /* address of mul() */
  p[3] = div; /* address of div() */
[...]

To call one of those function pointers:

result = (*p[op]) (i, j); // op being the index of one of the four functions
link|flag
Good answer - you should extend it to show how to call one of the functions, though. – Jonathan Leffler Oct 31 '08 at 19:30
vote up 1 vote down

yeah.the above answers may help u. but you may also want to know how to use array of function pointers.here it is..

void fun1()
{

}
void fun2()
{

}
void fun3()
{

}
void (*func_ptr[3]) = {fun1, fun2, fun3};

main()
{
 int option;


    printf("\nEnter function number u want");
     printf("\nyou should not enter other than 0 , 1, 2"); /*bcos we hav only 3 functions*/
     scanf("%d",&option);

     if((option>=0)&&(option<=2))
       { 
         (*func_ptr[option])();
       }


   return 0;
}

you can only assign the addresses of functions with the same return type and same argument types and no of arguments to a single function pointer array

you can also pass arguments like below if all the above functions are having the same no of arguments of same type.

  (*func_ptr[option])(argu1);

ok experiment with it. note: here in the array the numbering of the function pointers will be starting from 0 same as in general arrays.so in above example

fun1 can be accessed if option=0,

fun2() can be called if option=1 and

fun3() can be called if option=2.

link|flag
Even for this little demo, you should add a check for the input value, since code targets a newbie... :-) – PhiLho Oct 31 '08 at 6:53
if((option<0)||(option>2)) { (*func_ptr[option])(); } Dude this means the method is called only when the user types in an invalid index! – kronoz Oct 31 '08 at 7:24
That is a good answer, however you should add parenthesis after (*func_ptr[3]) to make it valid code. – Alex May 22 at 21:56
vote up 0 vote down

Oh, there are tons of example. Just have a look at anything within glib or gtk. You can see the work of function pointers in work there all the way.

Here e.g the initialization of the gtk_button stuff.


static void
gtk_button_class_init (GtkButtonClass *klass)
{
  GObjectClass *gobject_class;
  GtkObjectClass *object_class;
  GtkWidgetClass *widget_class;
  GtkContainerClass *container_class;

  gobject_class = G_OBJECT_CLASS (klass);
  object_class = (GtkObjectClass*) klass;
  widget_class = (GtkWidgetClass*) klass;
  container_class = (GtkContainerClass*) klass;

  gobject_class->constructor = gtk_button_constructor;
  gobject_class->set_property = gtk_button_set_property;
  gobject_class->get_property = gtk_button_get_property;

And in gtkobject.h you find the following declarations:


struct _GtkObjectClass
{
  GInitiallyUnownedClass parent_class;

  /* Non overridable class methods to set and get per class arguments */
  void (*set_arg) (GtkObject *object,
    	   GtkArg    *arg,
    	   guint      arg_id);
  void (*get_arg) (GtkObject *object,
    	   GtkArg    *arg,
    	   guint      arg_id);

  /* Default signal handler for the ::destroy signal, which is
   *  invoked to request that references to the widget be dropped.
   *  If an object class overrides destroy() in order to perform class
   *  specific destruction then it must still invoke its superclass'
   *  implementation of the method after it is finished with its
   *  own cleanup. (See gtk_widget_real_destroy() for an example of
   *  how to do this).
   */
  void (*destroy)  (GtkObject *object);
};

The (*set_arg) stuff is a pointer to function and this can e.g be assigned another implementation in some derived class.

Often you see something like this

struct function_table {
   char *name;
   void (*some_fun)(int arg1, double arg2);
};

void function1(int  arg1, double arg2)....


struct function_table my_table [] = {
    {"function1", function1},
...

So you can reach into the table by name and call the "associated" function.

Or maybe you use a hash table in which you put the function and call it "by name".

Regards
Friedrich

link|flag
Would it be pssible to use such a function_table for hashing functions within the hash table implementation itself? (Read: circular dependecy involved). – Flavius Dec 1 at 12:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.