Computer    
   
Table of contents
(Prev) Function composition (computer ...Function problem (Next)

Function pointer

A function pointer (or subroutine pointer) is a type of pointer supported by third-generation programming languages (such as PL/I, COBOL, Fortran 2003, dBASE dBL, and C) and object-oriented programming languages (such as C++ and D).[1] Instead of referring to data values, a function pointer points to executable code within memory. When dereferenced, a function pointer can be used to invoke the function it points to and pass it arguments just like a normal function call. Such an invocation is also known as an "indirect" call, because the function is being invoked indirectly through a variable instead of directly through a fixed name or address. Function pointers can be used to simplify code by providing a simple way to select a function to execute based on run-time values.

Contents

Simple function pointers

The simplest implementation of a function (or subroutine) pointer is as a variable containing the address of the function within executable memory. Older third-generation languages such as PL/I and COBOL, as well as more modern languages such as Pascal and C generally implement function pointers in this manner. Such pointers in older languages are generally less type-safe than in more modern languages, though, since the latter associate more typing information with a function pointer variable, such as the data type of the return value of the function and the data type information of the parameters to the function.[2]

Example in C

The following C program uses a function pointer to invoke one of two functions (sin or cos) indirectly from another function (compute_sum). The program operates by having function main call function compute_sum twice, passing it a pointer to the library function sin the first time, and a pointer to function cos the second time. Function compute_sum in turn invokes one of the two functions indirectly by dereferencing its function pointer argument funcp multiple times, adding together the values that the invoked function returns and returning the resulting sum. The two sums are written to the standard output by main.

#include <math.h>#include <stdio.h> // Function taking a function pointer as an argumentdouble compute_sum(double (*funcp)(double), double lo, double hi){ double  sum = 0.0; // Add values returned by the pointed-to function '*funcp' for (int i = 0;  i <= 100;  i++) { double  x, y; // Use the function pointer 'funcp' to invoke the function x = i/100.0 * (hi - lo) + lo; y = (*funcp)(x); sum += y; } return sum;} int main(void){ double  (*fp)(double);  // Function pointer double  sum; // Use 'sin()' as the pointed-to function fp = &sin; sum = compute_sum(fp, 0.0, 1.0); printf("sum(sin): %f\n", sum); // Use 'cos()' as the pointed-to function sum = compute_sum(&cos, 0.0, 1.0); printf("sum(cos): %f\n", sum); return 0;}

Functors

Functors, or function objects, are similar to function pointers, and can be used in similar ways. A functor is an object of a class type that implements the function-call operator, allowing the object to be used within expressions using the same syntax as a function call. Functors are more powerful than simple function pointers, being able to contain their own data values, and allowing the programmer to emulate closures. They are also used as callback functions if it is necessary to use a member function as a callback function.[3]

Many "pure" object-oriented languages do not support function pointers. Something similar can be implemented in these kinds of languages, though, using references to interfaces that define a single member function. CLI languages such as C# and Visual Basic .NET implement type-safe function pointers with delegates.

In other languages that support first-class functions, functions are regarded as data, and can be passed, returned, and created dynamically directly by other functions, eliminating the need for function pointers.

Extensively using function pointers to call functions may produce a slow-down for the code on modern processors, because branch prediction may not be able to figure out where to branch to (it depends on the value of the function pointer at run time) although this effect can be overstated as it is often amply compensated for by significantly reduced non indexed table lookups. This makes the memory allocation independent from execution. The concept later was used by the multithreading processing ability.

Method pointers

C++ is object-oriented, so classes can have methods. Non-static member functions (instance methods) have an implicit parameter (the this pointer) which is the pointer to the object it is operating on, so the type of the object must be included as part of the type of the function pointer. The method is then used on an object of that class by using one of the "pointer-to-member" operators: .* or ->* (for an object or a pointer to object, respectively).

Although function pointers in C and C++ can be implemented as simple addresses, so that typically sizeof(Fx)==sizeof(void *), member pointers in C++ are often implemented as "fat pointers", typically two or three times the size of a simple function pointer, in order to deal with virtual inheritance[citation needed].

In C++

A C++ typical use of "pointers to functions" is for passing a function as an argument to another function, since these cannot be passed dereferenced:

// Pointer to functions// compile: g++ -g functPointCpp.cc -o functPointCpp #include <iostream> using namespace std; int add(int first, int second){ return first + second;} int subtract(int first, int second){ return first - second;} int operation(int first, int second, int (*functocall)(int, int)){ return (*functocall)(first, second);} int main(){ int  a, b; int  (*plus)(int, int) = add; a = operation(7, 5, plus); b = operation(20, a, subtract); cout << "a = " << a << " and b = " << b << endl; return 0;}

In Ruby

{class ExampleClass  def method_name(x, y) x + y}  endend e = ExampleClass.new #'method' is a direct descendant of the Object class, as is 'call'function_pointer_example = e.method(:method_name)function_pointer_example.call(5, 6) #=> 11

References

  1. ^ "The Function Pointer Tutorials". http://www.newty.de/: logo. Retrieved 2011-04-13. "Function Pointers are pointers, i.e. variables, which point to the address of a function" 
  2. ^ "The Function Pointer Tutorials". http://www.newty.de/: logo. Retrieved 2011-04-13. "Important note: A function pointer always points to a function with a specific signature! Thus all functions, you want to use with the same function pointer, must have the same parameters and return-type!" 
  3. ^ "Expertise: Intermediate Language: C++: Use Functor for Callbacks in C++". http://www.devx.com/: DevX.com. 2005-01-31. Retrieved 2011-04-13. "If you want to use a member function as a callback function, then the member function needs to be associated with an object of the class before it can be called. In this case, you can use functor [with an example on this page]." 

See also

External links

(Prev) Function composition (computer ...Function problem (Next)