vote up 0 vote down star

How can I use a function pointer instead of a switch statement?

flag
1  
What language? What are you trying to accomplish? Is this a homework question? – Ian Elliott Jul 15 at 6:17
1  
What language are you writing in? – lc Jul 15 at 6:17

2 Answers

vote up 0 vote down

Here's a page that does a pretty good job of explaining this in C++:

link|flag
vote up 0 vote down

A slightly different approach from the above link: You can use the value from the switch statement as an array index in an array of function pointers. So instead of writing

switch (i) {
    case 0: foo(); break;
    case 1: bar(); break;
    case 2: baz(); break;
}

you can do this

typedef void (*func)();
func fpointers[] = {foo, bar, baz};
fpointers[i]();

Alternatively you can use the function pointers instead of numbers as described in ars's answer.

link|flag

Your Answer

Get an OpenID
or

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