how to use array of function pointers in c?
how to initialize them?
|
how to use array of function pointers in c? how to initialize them? |
||||
|
|
|
You have a good example here (Array of Function pointers), with the syntax detailed.
To call one of those function pointers:
|
|||||||||
|
|
yeah.the above answers may help u. but you may also want to know how to use array of function pointers.here it is..
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.
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. |
|||||||||
|
|
Please have a look File *New_Fun.h*
File *New_Fun.c*
File Main.c
I hope this helps in understanding |
||||
|
|
|
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.
And in gtkobject.h you find the following declarations:
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
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
|
||||
|