Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any difference between the two? Or am I safe to replace every occurrence of boost::bind by std::bind in my code and thereby get rid of any dependencies on Boost.

share|improve this question
I believe std::bind was pretty much copied from boost::bind when they came out with C++11, as with quite a few other things. – chris May 11 '12 at 16:56
6  
The question is about the "pretty much" part though. With some of the things that were lifted from Boost, minor changes were made. – jalf May 11 '12 at 16:58

3 Answers

up vote 32 down vote accepted
share|improve this answer

I don't have the full answer but std::bind will use variadic templates rather than parameter lists.

The placeholders are in std::placeholders as in std::placeholders::_1rather than the global namespace.

I alias the namespace to stdph with

namespace stdph=std::placeholders;

Apart from that I have had no problems updating to C++11

share|improve this answer
When porting existing boost::bind code that use placeholders, adding "using namespace std::placeholders;" at the top of the file puts the placeholders into the global namespace. Very handy. – goertzenator Feb 7 at 16:23
the problem is, when porting you usually end up with boost bind still wrangling it;s way through somehow and you end up with the standard and boost placeholders. – 111111 Feb 7 at 17:24
It depends on the project I guess. I mechanically removed all my boost function.hpp and bind.hpp includes from a decent size project with sed and the above namespace directive worked out fine. If you have boost bind in some header that you can't change, I see how things could get ugly. – goertzenator Feb 7 at 20:03

Besides the listed above, boost::bind has an important extension point: get_pointer() function that allows integrating boost::bind with any smart pointer, eg. ATL::CComPtr etc. http://www.boost.org/doc/libs/1_49_0/libs/bind/mem_fn.html#get_pointer

As a result, with boost::bind you can also bind a weak_ptr: http://lists.boost.org/Archives/boost/2012/01/189529.php

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.