Tagged Questions

boost::bind is a generalization of the standard C++ functions std::bind1st and std::bind2nd. It supports arbitrary function objects, functions, function pointers, and member function pointers, and is able to bind any argument to a specific value or route input arguments into arbitrary positions.

learn more… | top users | synonyms

14
votes
4answers
3k views

How does boost bind work behind the scenes in general?

Without spending a long time reviewing the boost source code, could someone give me a quick rundown of how boost bind is implemented?
12
votes
2answers
339 views

Help me understand this usage of boost::bind

Please have a look at this example posted by Johannes Schaub to sort a vector of pairs: How do I sort a vector of pairs based on the second element of the pair? std::sort(a.begin(), a.end(), ...
10
votes
3answers
962 views

How to implement generic callbacks in C++

Forgive my ignorance in asking this basic question but I've become so used to using Python where this sort of thing is trivial that I've completely forgotten how I would attempt this in C++. I want ...
8
votes
1answer
153 views

Is using boost::bind to pass more arguments than expected safe?

Using boost-bind, the resulting boost-function may receive more arguments than the bound object expects. Conceptually: int func() { return 42; } boost::function<int (int,int,int)> boundFunc = ...
8
votes
3answers
326 views

How can I use Boost.Bind on compound types?

I have std::map<int, std::pair<short, float> >, and I need to find the minimal short in this map. How can I use boost::bind with std::min_element() for this? boost::lambda?
8
votes
6answers
2k views

Calling base class definition of virtual member function with function pointer

I want to call the base class implementation of a virtual function using a member function pointer. class Base { public: virtual void func() { cout << "base" << endl; } }; class ...
8
votes
1answer
2k views

boost::bind with functions that have parameters that are references

I noticed that when passing reference parameters to boost bind, those parameters won't act like references. Instead boost creates another copy of the member and the original passed in variable ...
7
votes
2answers
768 views

How to use boost::bind with non-copyable params, for example boost::promise?

Some C++ objects have no copy constructor, but have move constructor. For example, boost::promise. How can I bind those objects using their move constructors ? #include <boost/thread.hpp> void ...
7
votes
1answer
721 views

Can I boost::bind() to an Objective C function?

I have no idea if this is possible, but if it is, what would the syntax look like? If not possible, why not?
6
votes
2answers
228 views

Difference between boost::bind, boost::lambda::bind and boost::phoenix::bind

I am trying to understand the difference between these different bind approaches. There is a similar question at boost::bind and boost::phoenix::bind But, if anyone can explain this with examples it ...
6
votes
2answers
2k views

Using for_each and boost::bind with a vector of pointers

I have a vector of pointers. I would like to call a function for every element, but that function takes a reference. Is there a simple way to dereference the elements? Example: ...
6
votes
4answers
2k views

boost::bind with null function pointers

If the function pointer embedded in a boost::bind return object is NULL/nullptr/0, I need to take action other than calling it. How can I determine if the object contains a null function pointer? ...
6
votes
2answers
4k views

boost::bind and class member function

Consider following example. #include <iostream> #include <algorithm> #include <vector> #include <boost/bind.hpp> void func(int e, int x) { std::cerr << "x is " ...
5
votes
2answers
114 views

Is it possible to create a function pointer to the a function's `new` operator/constructor?

If I were to wanted to parameterize creating an object, I could of course make a function which called new on a particular class and passed out a pointer. I am wondering if it's possible to skip that ...
5
votes
2answers
252 views

What is the return type of boost::bind?

I want to save the "binder" of a function to a variable, to use it repetitively in the following code by exploiting its operator overloading facilities. Here is the code that actually does what I ...
5
votes
4answers
364 views

Delete raw pointer argument to boost::bind

Lets say I have heap allocated A*, which I want to pass as argument to boost::bind. boost::bind is saved for later processing in some STL like container of boost::functions's. I want to ensure A* ...
5
votes
1answer
201 views

What is the difference between boost::bind and boost::lambda::bind?

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 ...
5
votes
4answers
3k views

boost shared_from_this<>()

could someone summarize in a few succinct words how the boost shared_from_this<>() smart pointer should be used, particularly from the perspective of registering handlers in the io_service using ...
5
votes
2answers
3k views

How to use boost bind with a member function

The following code causes cl.exe to crash (MS VS2005). I am trying to use boost bind to create a function to a calls a method of myclass: #include "stdafx.h" #include <boost/function.hpp> ...
4
votes
2answers
76 views

How to create a function with argument that would be result of boost::bind?

So I want to create a function like: void proxy_do_stuff(boost::bind return_here) { return_here(); // call stuff pased into boost::bind } And I could call it like : ...
4
votes
2answers
214 views

Why might std::bind1st be considered “almost unusable”?

During a conversation on boost::bind, it was noted that std::bind1st exists in C++03, but that it is "almost unusable". I can't find anything solid to back this up. The boost::bind documentation ...
4
votes
2answers
2k views

How to force template function overload for boost::bind?

I'm trying to create predicate for std::find_if by using boost::bind together with boost::contains (from boost/algoritm/string library). Following snippet shows two ways how I'm trying to accomplish ...
4
votes
1answer
584 views

removing strings from a vector via boost::bind

I am trying to remove short strings from a vector. std::vector<std::string> vec; // ... vec.erase(std::remove_if(vec.begin(), vec.end(), ...
4
votes
3answers
4k views

Class member function as callback using boost::bind and boost::function

I'm working through setting up a member function as a callback for a C-library that I'm using. The C-library sets up callbacks like this: typedef int (*functionPointer_t)(myType1_t*, myType2_t*, ...
4
votes
2answers
887 views

Binding to a member variable

I am confused as to what boost::bind does when we bind to member variables. With binding to member function, we essentially create a function object, and then call it passing to it the arguments that ...
4
votes
3answers
7k views

Multithreading using the boost library

Wish to simultaneously call a function multiple times. I wish to use threads to call a function which will utilize the machines capability to the fullest. This is a 8 core machine, and my requirement ...
3
votes
3answers
109 views

Passing values to atexit

I want to push a series of clean up functions as they are needed. I was using atexit to do this for one cleanup function without any parameters, but I am not sure how to expand this approach to more ...
3
votes
3answers
177 views

Bind a function against a range to make an iterating function

I am trying to implement my own bind_range that can bind against a range. It should allow client code like this: void f(int x, int y) { std::cout << x + y << ','; } ...
3
votes
1answer
318 views

How to define and use boost::function with “optional arguments”?

I am using a class that needs some kind of callback method, so i'm using boost::function to store the function pointers. i need the callback to have one optional argument, but i found out that ...
3
votes
2answers
285 views

How should I delete a child object from within a parent's slot? Possibly boost::asio specific

I have written a network server class that maintains a std::set of network clients. The network clients emit a signal to the network server on disconnect (via boost::bind). When a network client ...
3
votes
1answer
664 views

std::stringstream as parameter to a function

I have a std::vector<std::string> temp_results and I wish to use std::for_each to go through this vector and concatenate a string, so I concocted the following construction: std::stringstream ...
3
votes
2answers
292 views

Perform argument substitution on nested boost::bind without composition

Suppose I have a function which takes a nullary functor as an argument: void enqueue( boost::function<void()> & functor ); I have another function which takes an int and does something ...
3
votes
2answers
311 views

boost::bind doesn't work with pointer argument

I have this simple program. Here I try to bind member function with object and call later on with arguments required in member function call. When the member function taken a pointer to integer, gcc ...
3
votes
3answers
140 views

C++ - binding function

I have some (library API, so I can't change the function prototype) function which is written the following way: void FreeContext(Context c); Now, at some moment of my execution I have Context* ...
3
votes
1answer
413 views

Boost.Bind - understanding placeholders

I am trying to understand the following example, that is similar (but not equal) to the one posted earlier on the SO ...
3
votes
1answer
555 views

Using boost::bind and boost::lambda::new_ptr to return a shared_ptr constructor

Given a class A, class A { public: A(B&) {} }; I need a boost::function<boost::shared_ptr<A>(B&)> object. I prefer not to create an ad-hoc function ...
3
votes
3answers
524 views

Adapting Map Iterators Using STL/Boost/Lambdas

Consider the following non-working code: typedef map<int, unsigned> mymap; mymap m; for( int i = 1; i < 5; ++i ) m[i] = i; // 'remove' all elements from map where .second < 3 ...
3
votes
2answers
2k views

How do declare an extern “C” function pointer

So I have this code: #include "boost_bind.h" #include <math.h> #include <vector> #include <algorithm> double foo(double num, double (*func)(double)) { return 65.4; } int ...
3
votes
2answers
546 views

delete boost function while in use

I have a situation where a boost::function and boost::bind (actually a std::tr1::function and bind) are being deleted while still in use. Is this safe? I would normally avoid it, but the offending ...
3
votes
4answers
3k views

How do you pass boost::bind objects to a function?

I have a one-dimensional function minimizer. Right now I'm passing it function pointers. However many functions have multiple parameters, some of which are held fixed. I have implemented this using ...
3
votes
2answers
347 views

Boost lambda bewilderment

Why is callback called once only? bool callback() { static bool res = false; res = !res; return res; } int main(int argc, char* argv[]) { vector<int> x(10); bool ...
3
votes
3answers
1k views

A more natural boost::bind alternative?

Don't get me wrong: Boost's bind() is great. But I do hate to write&read code with it, and I've given up hope my coworkers will ever grok/use it. I end up with code like this: ...
3
votes
2answers
3k views

How to use boost::bind in C++/CLI to bind a member of a managed class

I am using boost::signal in a native C++ class, and I now I am writing a .NET wrapper in C++/CLI, so that I can expose the native C++ callbacks as .NET events. When I try to use boost::bind to take ...
2
votes
1answer
42 views

Why doesn't std::bind and boost::bind can't be used interchangeably in this Boost.Asio tutorials

I was trying the differents tutorials in Boost.Asio documentation and tried to replace boost components with C++11 ones. However, I got an error using std::bind in Timer.5 - Synchronising handlers in ...
2
votes
2answers
88 views

Does copying a boost::function also copy the closure?

Say I have a function like this: void someFunction(const ExpensiveObjectToCopy&); If I make a boost::function out if it, that function will store its own cloned copy of the object in its ...
2
votes
3answers
132 views

Using boost::bind() across C code, will it work?

Can I use boost::bind(mycallback, this, _1, _2) across C code? Update The short answer is no, boost bind does not return a function pointer, which can be called in C code, but a functor (C++ object ...
2
votes
1answer
115 views

How to use Boost::asio::buffer(buf, size) with boost bind?

We have a member function in some .h file template <typename MutableBufferSequence> int read_some(boost::asio::ip::tcp::socket& sock, const MutableBufferSequence& buffers) { ...
2
votes
1answer
58 views

Expressing Church Numerals with Boost.Bind

Church numerals can be expressed in C++0x (C++11?) using the new lambda parts of the language using something like this: typedef function<int(int)> F; static const F id = [=](int x) { return x; ...
2
votes
2answers
150 views

boost::bind doesn't work with boost::tuple::get<N>()

I am trying to use boost::bind and STL with boost::tuple, but each time I try to compile I get the following error. error: call of overloaded ‘bind(<unresolved overloaded function type>, ...
2
votes
2answers
83 views

Binding the parameters before setting the function pointer?

I would like to try something out and unify some boilerplate code in one of our dynamic library API wrappers. Essentially, I would like to do the following: typedef bool (*MyFPtrT)(long id, ...

1 2 3