How can I use a function pointer instead of a switch statement?
|
|
|||||||||
|
|
|
Here's a page that does a pretty good job of explaining this in C++: |
||
|
|
|
|
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
you can do this
Alternatively you can use the function pointers instead of numbers as described in ars's answer. |
||
|
|
