How and when do you choose to use functions pointer instead of switch case
What are the differences and advantages of each?
|
|
How and when do you choose to use functions pointer instead of switch case What are the differences and advantages of each?
|
||||||
|
closed as not programming related by Prakash Sep 10 '08 at 14:03 |
|
|
Function pointers are an open ended system. The end user of your code can pass a function pointer and decide what will happen. Switches are closed. Only you can decide what may happen. What to use depends on what your requirements are. If there is only a limited set of possible actions, use a switch statement. If there are a lot of options, or if you can't know all options when you are writing the code, it's best to use a function pointer. |
||
|
|
|
|
Function pointers are a good option when your condition is more complex than an integer, for instance if you need to invoke a function depending on a string match. That way you can have a set of (string, function pointer) pairs to iterate over. Another benefit is when the volume of code for each condition is more than a few lines, separating it into a separate function will greatly aid readability. The downside to function pointers is that when grepping through code it can be a little bit more difficult to find out where the function is called from. |
||
|
|
|
|
|
||
|
|
|
|
When I coded my first editor, I used separate functions to implement insert mode vs overwrite mode. That way I did not have to check each time to see what mode I was in. However, performance benefits were nil in my case but it kept my code clean. |
||
|
|
|
|
That contrived example is pretty horrible - the two methods don't fulfill the same requirements at all. In the first case, the caller just needs to know to pass in two numbers and a character and they get some result. In the second case, the caller has to have access to the underlying implementation function directly. And at that point, why even call SwitchWithFunctionPointer()? They already have the function they need and can call it directly! |
||
|
|
|
|
If your functions take a lot of parameters using a function pointer and a switch statement can make the code easier to maintain. (the following is actual code from a work project):
If I need to change the parameters I am passing to the functions I only have to make the change in two places (in this code), in the declaration for fnExec and when it's called; instead of having to edit it for every case (which would have made the code much longer and harder to read.) And if I have to add another function, I only have to duplicate one line for the extra case and change two identifiers. (Note: I had the problem that |
|||
|
|