Function pointer OR switch case? - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-11-27T23:05:25Zhttp://stackoverflow.com/feeds/question/53930http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/53930/function-pointer-or-switch-case2Function pointer OR switch case? [closed]Prakash2008-09-10T12:48:33Z2009-07-13T06:56:31Z
<p>How and when do you choose to use functions pointer instead of switch case</p>
<p>What are the differences and advantages of each?</p>
http://stackoverflow.com/questions/53930/function-pointer-or-switch-case/53934#539341Answer by Niyaz for Function pointer OR switch case?Niyaz2008-09-10T12:50:30Z2008-09-10T12:50:30Z<p>Refer: <a href="http://www.tiac.net/~cri/2008/transfer.html" rel="nofollow">Function pointer vs switch cases</a></p>
http://stackoverflow.com/questions/53930/function-pointer-or-switch-case/53936#539364Answer by Leon Timmermans for Function pointer OR switch case?Leon Timmermans2008-09-10T12:51:05Z2008-09-10T12:51:05Z<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/53930/function-pointer-or-switch-case/53955#539552Answer by Ted Percival for Function pointer OR switch case?Ted Percival2008-09-10T12:59:45Z2008-09-10T12:59:45Z<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/53930/function-pointer-or-switch-case/53957#539571Answer by Agnel Kurian for Function pointer OR switch case?Agnel Kurian2008-09-10T13:00:32Z2008-09-10T13:00:32Z<p>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.</p>
http://stackoverflow.com/questions/53930/function-pointer-or-switch-case/54099#540990Answer by 17 of 26 for Function pointer OR switch case?17 of 262008-09-10T13:53:24Z2008-09-10T13:53:24Z<p>That contrived example is pretty horrible - the two methods don't fulfill the same requirements at all.</p>
<p>In the first case, the caller just needs to know to pass in two numbers and a character and they get some result.</p>
<p>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!</p>
http://stackoverflow.com/questions/53930/function-pointer-or-switch-case/54485#544850Answer by Sam Hasler for Function pointer OR switch case?Sam Hasler2008-09-10T15:48:57Z2008-09-10T15:56:15Z<p>If your functions take a lot of parameters using a function pointer <strong>and</strong> a switch statement can make the code easier to maintain. (the following is actual code from a work project):</p>
<pre><code>short (*fnExec) ( long nCmdId
, long * pnEnt
, short vmhDigitise
, short vmhToolpath
, int *pcLines
, char ***prgszNCCode
, map<string, double> *pmpstrd
) = NULL;
switch(nNoun) {
case NOUN_PROBE_FEED: fnExec = &ExecProbeFeed; break;
case NOUN_PROBE_ARC: fnExec = &ExecProbeArc; break;
case NOUN_PROBE_SURFACE: fnExec = &ExecProbeSurface; break;
case NOUN_PROBE_WEB_POCKET: fnExec = &ExecProbeWebPocket; break;
default: ASSERT(FALSE);
}
nRet = (*fnExec)(nCmdId, &nEnt, vmhDigitise, vmhToolpath, &cLines, &rgszNCCode, &mpstrd);
</code></pre>
<p>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.)</p>
<p>And if I have to add another function, I only have to duplicate one line for the extra case and change two identifiers.</p>
<p>(Note: I had the problem that <code>nNoun</code> wasn't just a simple value 1-4, I had to map it to the function name; otherwise I could have used an array and just call <code>func[i](args);</code> like the page Niyaz links to suggests.)</p>