An Introduction to Java Programming



Passing Functions as Parameters

For Introduction to C++ Programming

By Y. Daniel Liang

In C++, you can pass functions as parameters in a function. Passing a function parameter is to pass the address of the function. We demonstrate this capability using three examples:

The first example in Listing 1 defines a function with a function parameter that has its own parameters.

Listing 1 FunctionWithFunctionParameter1.cpp

#include

using namespace std;

int f1(int value)

{

return 2 * value;

}

int f2(int value)

{

return 3 * value;

}

void m(int t[], int size, int f(int))

{

for (int i = 0; i < size; i++)

t[i] = f(t[i]);

}

int main()

{

int list1[] = {1, 2, 3, 4};

m(list1, 4, f1);

for (int i = 0; i < 4; i++)

cout ................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download