标签: c++ boost
有谁知道为什么boost bind接受成员函数的地址,但非成员函数不需要地址。
例如:
boost::bind( &CMyClass::doSomething, this );
vs
boost::bind( RegularFunction );
理论上可以提升实施,因此可以如下约定:
boost::bind( CMyClass::doSomething, this );
或者这不起作用?