
8 Jan
2005
8 Jan
'05
5:07 p.m.
Brian Braatz wrote:
Question: Does anyone know when you should and should not use the & in a bind call?
The & is optional in front of ordinary functions, but required in front of member functions. This is how C++ works; functions are implicitly convertible to function pointers, but member functions need their address taken explicitly to form a pointer to member.