[Home]  [Edit this page]  [Recent Changes]  [Special Pages]  [Help
CppFunctionPointer

(C++) Function pointer, pointer-to-a-function

You can set a pointer to a function. Note that polymorphism can enable you to do the same and more.

Declaration

  [returnType] (*[name])([arguments])


constness

If you do not want to change to which function the pointer points.
  [returnType] (* const [name])([arguments])


Example

int plus( const int& a, const int& b) { return a + b; }
int minus(const int& a, const int& b) { return a - b; }
int main()
{
  //Declaration
  int (*myFunction)(const int&, const int&); 
  myFunction = plus;
  std::cout << myFunction(5,3) << std::endl;
  myFunction = minus;
  std::cout << myFunction(5,3) << std::endl;
}


last edited (December 18, 2006) by bilderbikkel, Number of views: 1046, Current Rev: 3 (Diff)

[Edit this page]  [Page history]  [What links here]  [Discuss this topic]  [Printer Friendly]  

Members

Username:

Password:


Register
Forgot Password?




Programmers Heaven - for .NET, Java, C/C++ and WEB Developers!
© 1996-2008 Community Networks Ltd. All rights reserved. Reproduction in whole or in part, in any form or medium without express written permission is prohibited. Violators of this policy may be subject to legal action. Please read Terms Of Use and Privacy Statement for more information. Development by Tore Nestenius at .NET Consultant - Synchron Data.