What is the point of them?
I've never used them for anything, and I can't see myself needing to use them at all.
Am I missing something about them or are they pretty much useless?
EDIT: I don't know much about them, so a description about them might be necessary...
|
|
A PMF (pointer to member function) is like a normal (static) function pointer, except, because non-static member functions require the Here's an example of PMFs in use (note the "magic" line with the
[Download] It's a simple RPN calculator using complex numbers instead of real numbers (mostly because Input should be of the form |
|||||||
|
|
Bind a pointer to a function is very useful in a variety of situations. Basically, it allows you to refer to functions as variables, which lets you choose, at runtime, which function you will call. One use for this is in "callbacks". Say I want some background process to work for a while, and let us know when it's done (so we can update the GUI, or something). But sometimes, we may want this background process to call one method, and sometimes, we want it to call a different method. Rather than writing two versions of this background process, we can write it so that the background process receives a pointer to the function we want it to "call back". Then, when the process is finished, it calls whichever function it was given in the first place. Basically, it just lets you have a heap more flexibility in deciding which method to call. In that way, it's quite similar to polymorphism. In fact, behind the scenes, I believe C++ uses pointers to functions to facilitate polymorphism (by storing a different table of pointers to functions for each class) |
|||
|
|
|
If I understand your question correctly. Why not?
|
||||
|