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):
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);
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 nNoun 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 func[i](args); like the page Niyaz links to suggests.)
