boost::bind 和 boost::lambda::bind 有什么区别?
我可以看到 Boost 有两个不同的绑定库,一个是“独立”的,可以通过包含 boost/bind.hpp 来使用,另一个可以通过包含 boost/lambda/bind 来使用。 hpp.这两者有什么区别?
I can see that there are two different bind libraries for Boost, one "standalone", that can be used by including boost/bind.hpp
, and another by including boost/lambda/bind.hpp
. What's the difference between these two?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这里的解释: http://boost .org/doc/libs/1_46_0/doc/html/lambda/s08.html#id2143701
它们具有重叠的功能,但由于语义差异,因此不能交错使用。
Have a look at the explanation here: http://boost.org/doc/libs/1_46_0/doc/html/lambda/s08.html#id2143701
They have overlapping functionality but with semantic differences, they can't be used interleaved.