In c++, when and how do you use a callback function?
EDIT:
I would like to see a simple example to write a callback function.
|
In c++, when and how do you use a callback function? EDIT: |
||||
|
|
|
A Callback function is a method that is passed into a routine, and called at some point by the routine to which it is passed. This is very useful for making reusable software. For example, many operating system APIs (such as the Windows API) use callbacks heavily. For example, if you wanted to work with files in a folder - you can call an API function, with your own routine, and your routine gets run once per file in the specified folder. This allows the API to be very flexible. |
|||
|
|
|
There is also the C way of doing callbacks: function pointers
Now if you want to pass in class methods as callbacks, the declarations to those function pointers have more complex declarations, example:
|
|||||||||||
|
|
Scott Meyers gives a nice example:
I think the example says it all.
|
|||||||||
|
|
Callback functions are part of the C standard, an therefore also part of C++. But if you are working with C++, I would suggest you use the observer pattern instead: http://en.wikipedia.org/wiki/Observer_pattern |
|||
|
|
|
You also could consider using an event-type system in lieu of callbacks. http://cratonica.wordpress.com/2010/02/19/implementing-c-net-events-in-c/ |
|||
|
|
|
A great example of this using pure c++ is in the API Book examples which I highly recommend - here |
|||
|
|
|
homework? There isn't an explicit concept of a callback function in C++. Callback mechanisms are often implemented via function pointers, functor objects, or callback objects. The programmers have to explicitly design and implement callback functionality. |
|||
|
|