Tagged Questions

1
vote
2answers
193 views

is there a use for &func or class::func in c++?

This seems inconsistent. Why do we use &Example::func instead of Example::func? is there a use for Example::func or &exampleFunction? it doesnt seem like we can make a reference to a function ...
0
votes
2answers
87 views

Odd syntax: asterisk after scope operator (::)?

Help me understand the following code snippet: (foo.h) class Foo { public: typedef void (MyType::*Handler)(SomeOtherType* t); Foo(Handler handler) : handler_(handler) { } ...