vote up 2 vote down star

How and when do you choose to use functions pointer instead of switch case

What are the differences and advantages of each?

flag

71% accept rate
That question doesn't make much sense to me. I could see why you might compare if/else to switch/case, but a function pointer is a completely different animal. – 17 of 26 Sep 10 '08 at 12:52
Nevermind, Niyaz linked to something explaining it. – 17 of 26 Sep 10 '08 at 12:53
This is definitely programming related, my friend. – Agnel Kurian May 24 at 7:25

closed as not programming related by Prakash Sep 10 '08 at 14:03

6 Answers

vote up 4 vote down

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.

link|flag
vote up 2 vote down

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.

link|flag
vote up 1 vote down

Refer: Function pointer vs switch cases

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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!

link|flag
vote up 0 vote down

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.)

link|flag

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