Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm learning how to dynamically load DLL's but what I don't understand is this line

typedef void (*FunctionFunc)();

I have a few questions. If someone is able answer them I would be grateful.

  1. Why is typedef used?
  2. The syntax looks odd; after void should there not be a function name or something? It looks like an anonymous function.
  3. Is a function pointer created to store the memory address of a function?

So I'm confused at the moment; can you clarify things for me?

share|improve this question
Take a look at the link (last section) learncpp.com/cpp-tutorial/78-function-pointers – enthusiasticgeek May 3 at 3:28

4 Answers

up vote 63 down vote accepted

typedef is a language construct that associates a keyword to a type.
You use it the same way you would use the initial type, for instance

  typedef int myinteger;
  typedef char *mystring;
  typedef void (*myfunc)();

using them like

  myinteger i;   // is equivalent to    int i;
  mystring s;    // is the same as      char *s;
  myfunc f;      // compile equally as  void (*f)();

As you can see, you could just replace the typedefed keyword with its definition given above.

The difficulty lies in the pointer to functions syntax and readability in C and C++, and the typedef can improve the readability of such declarations. However, the syntax is appropriate, since functions - unlike other simpler types - may have a return value and parameters, thus the need to use more keywords and parentheses to write the function declaration.

The readability may start to be really tricky with pointers to functions arrays, and some other even more indirect flavors.

To answer your three questions

  • Why is typedef used? To ease the reading of the code - especially for pointers to functions, or structure names.

  • The syntax looks odd (in the pointer to function declaration) That syntax is not obvious to read, at least when beginning. Using a typedef declaration instead eases the reading

  • Is a function pointer created to store the memory address of a function? Yes, a function pointer stores the address of a function. This has nothing to do with the typedef construct which only ease the writing/reading of a program ; the compiler just expands the typedef definition before compiling the actual code.

Exemple:

typedef int (*t_somefunc)(int,int);

int square(int u, int v) {
  return u*v;
}

t_somefunc afunc = □
...
int x2 = (*afunc)(123, 456); // call square() to calculate 123*456
share|improve this answer
1  
in the last example, wouldn't just 'square' refer to the same thing i.e pointer to the function instead of using &square. – pranavk Mar 5 at 13:32
Question, in your first typedef example you have of the form typedef type alias but with function pointers there only seems to be 2 arguments, typedef type. Is alias defaulted to the name specified in type argument? – user814628 May 3 at 3:56
@pranavk: Yes, square and &square (and, indeed, *square and **square) all refer to the same function pointer. – Jonathan Leffler May 3 at 3:58
@user814628: It is not clear quite what you're asking. With typedef int newname, you are making newname into an alias for int. With typedef int (*func)(int), you are making func into an alias for int (*)(int) — a pointer to function taking an int argument and returning an int value. – Jonathan Leffler May 3 at 4:01
I guess I'm just confused about the ordering. With typedef int (*func)(int), I understand that func is an alias, just a little confused because the alias is tangled with the type. Going by typedef int INT as an example I would be more of ease if typedef function pointer was of form typedef int(*function)(int) FUNC_1. That way I can see the type and alias in two separate token instead of being meshed into one. – user814628 May 3 at 5:07
  1. typedef is used to alias types; in this case you're aliasing FunctionFunc to void(*)().

  2. Indeed the syntax does look odd, have a look at this:

    typedef   void      (*FunctionFunc)  ( );
    //         ^                ^         ^
    //     return type      type name  arguments
    
  3. No, this simply declares that the FunctionFunc type will be a function pointer, it doesn't define one, like this:

    FunctionFunc x;
    void doSomething() { printf("Hello there\n"); }
    x = &doSomething;
    
    x(); //prints "Hello there"
    
share|improve this answer
10  
typedef does not declare a new type. you can have many typedef-defined names of the same type, and they are not distinct (e.g. wrt. overloading of functions). there are some circumstances in which, with respect to how you can use the name, a typedef-defined name is not exactly equivalent to what it's defined as, but multiple typedef-defined names for the same, are equivalent. – Cheers and hth. - Alf Nov 28 '10 at 5:00
Ah i get it now. Thanks. – Jack Harvin Nov 28 '10 at 5:09
@Jack, You're welcome! :) – Jacob Relkin Nov 28 '10 at 5:09
3  
+1 for the answer to question 2 - very clear. The rest of the answers were clear too, but that one stands out for me :-) – Michael van der Westhuizen Jan 19 '12 at 18:57

Without the typedef word, in C++ the declaration would declare a variable FunctionFunc of type pointer to function of no arguments, returning void.

With the typedef it instead defines FunctionFunc as a name for that type.

Cheers & hth.,

share|improve this answer
1  
For C++, your answer is correct. For C, it is not a function taking no arguments, but a function taking an unspecified but constant number of arguments of types compatible with default argument promotions. – R.. Nov 28 '10 at 5:52
@R. I didn't notice the OP had tagged the question with two different languages. Sorry. And at the same time, argh, why the heck do they do that? I'll clarify that the answer is for C++. Thanks! – Cheers and hth. - Alf Nov 28 '10 at 5:55

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]);
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.