Help me understand the following code snippet:

(foo.h)

class Foo
{
   public:
        typedef void (MyType::*Handler)(SomeOtherType* t);

        Foo(Handler handler) : handler_(handler) { }

   private:
        Handler handler_;
};

(mytype.h)

class MyType
{
     public:
          MyType() { }
          void fun1() { }
          void fun2() { }    
};

What exactly is the typedef in foo.h declaring here? I can see that it's a function pointer of some kind but what's the significance of the asterisk? It appears to be de-referencing a type (??) and somehow trying to "attach" the newly typedef'd pointer to the type of MyType (?!?).

Can someone shed some light here please? Really confused :S

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

void (MyType::*)(SomeOtherType* t) is a pointer to a member function in class MyType that takes one argument (pointer to SomeOtherType) and returns nothing.

FAQ Lite entry.

link|improve this answer
Wowsers. I had no idea such a thing existed. Worse, the syntax is completely obtuse. These are just personal gripes though. Thank you very much! – Daniel Dec 1 '11 at 15:15
@Daniel: Good news is you don't have to use that crappy syntax. Look into std::function and std::bind (or boost::function/boost::bind if you're still on C++03). – Cat Plus Plus Dec 1 '11 at 15:18
@CatPlusPlus You might also mention that ::* is a single token, not a concatenation of :: and *. The wording in the original question makes me think that the poster isn't aware of this. – James Kanze Dec 1 '11 at 15:21
(removed previous comment; FAQ Lite already answers it). Thank you again! – Daniel Dec 1 '11 at 15:31
feedback

Pointer to a MyType member function returning void and taking pointer to SomeOtherType as a parameter.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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