Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
原始函数指针与 boost::bind 指针返回值有什么区别?
bind根本不返回指针。它返回一个包含函数指针和绑定参数的对象,并带有一个operator()可用于像函数一样调用它的重载对象。
bind
operator()
所以主要区别在于结果bind存储了你想要绑定到函数参数的值;原始指针不存储任何内容。