Making function pointers pretty with typedef
Let’s face it — the syntax for pointers to functions is ugly. However, typedefs can be used to make pointers to functions look more like regular variables:
typedef bool (*pfcnValidate)(int, int);
This defines a typedef called “pfcnValidate” that is a pointer to a function that takes two ints and returns a bool.
Now instead of doing this:
bool Validate(int nX, int nY, bool (*pfcn)(int, int));
One can write this:
bool Validate(int nX, int nY, pfcnValidate pfcn)
Which reads a lot nicer!
Take the following example involving function pointer
#include <algorithm> // for swap
#include <iostream>
using namespace std;
// Note our user-defined comparison is the third parameter
void SelectionSort(int *anArray, int nSize, bool (*pComparison)(int, int))
{
for (int nStartIndex= 0; nStartIndex < nSize; nStartIndex++)
{
int nBestIndex = nStartIndex;
// Search through every element starting at nStartIndex+1
for (int nCurrentIndex = nStartIndex + 1; nCurrentIndex < nSize; nCurrentIndex++)
{
// Note that we are using the user-defined comparison here
if (pComparison(anArray[nCurrentIndex], anArray[nBestIndex])) // COMPARISON DONE HERE
nBestIndex = nCurrentIndex;
}
// Swap our start element with our best element
swap(anArray[nStartIndex], anArray[nBestIndex]);
}
}
// Here is a comparison function that sorts in ascending order
// (Note: it's exactly the same as the previous Ascending() function)
bool Ascending(int nX, int nY)
{
return nY > nX;
}
// Here is a comparison function that sorts in descending order
bool Descending(int nX, int nY)
{
return nY < nX;
}
// This function prints out the values in the array
void PrintArray(int *pArray, int nSize)
{
for (int iii=0; iii < nSize; iii++)
cout << pArray[iii] << " ";
cout << endl;
}
int main()
{
using namespace std;
int anArray[9] = { 3, 7, 9, 5, 6, 1, 8, 2, 4 };
// Sort the array in descending order using the Descending() function
SelectionSort(anArray, 9, Descending);
PrintArray(anArray, 9);
// Sort the array in ascending order using the Ascending() function
SelectionSort(anArray, 9, Ascending);
PrintArray(anArray, 9);
return 0;
}
One can do the following
typedef bool (*pComparison)(int, int);
and the function can be modified as
void SelectionSort(int *anArray, int nSize, pComparison pCmp)
{
using namespace std;
for (int nStartIndex= 0; nStartIndex < nSize; nStartIndex++)
{
int nBestIndex = nStartIndex;
// Search through every element starting at nStartIndex+1
for (int nCurrentIndex = nStartIndex + 1; nCurrentIndex < nSize; nCurrentIndex++)
{
// Note that we are using the user-defined comparison here
if (pCmp(anArray[nCurrentIndex], anArray[nBestIndex])) // COMPARISON DONE HERE
nBestIndex = nCurrentIndex;
}
// Swap our start element with our best element
swap(anArray[nStartIndex], anArray[nBestIndex]);
}
}