up vote 2 down vote favorite
2
share [g+] share [fb]

I'm trying to create new objects and add them to a list of objects using boost::bind. For example.

struct Stuff {int some_member;};
struct Object{
    Object(int n);
};
....
list<Stuff> a;   
list<Object> objs;
....
transform(a.begin(),a.end(),back_inserter(objs), 
  boost::bind(Object,
     boost::bind(&Stuff::some_member,_1)
  )
);

This doesn't appear to work. Is there any way to use a constructor with boost::bind, or should I try some other method?

link|improve this question

What does you mean "appear to work"? it is not compiled or list isn't populated? – Dewfy Aug 26 '09 at 15:09
1  
Som code that actually compiles would help. What is "a" - it appears to have collection begin & end methods but also some_member? – jon-hanson Aug 26 '09 at 15:18
jon, that was an error on my part. It's fixed now. Dewfy, the code doesn't compile. – Dan Hook Aug 26 '09 at 17:52
feedback

4 Answers

up vote 5 down vote accepted

If Stuff::some_member is int and Object has a non-explicit ctor taking an int, this should work:

list<Stuff> a;   
list<Object> objs;
transform(a.begin(),a.end(),back_inserter(objs), 
  boost::bind(&Stuff::some_member,_1)
);

Otherwise, you could use boost::lambda::constructor

link|improve this answer
I simplified my code a little too much. The constructor in my real code took three arguments, so in implicit conversion trick doesn't work. The link answered my question completely though. Thanks. – Dan Hook Aug 26 '09 at 19:16
feedback

If you are using boost 1.43, you can use boost::factory and boost::value_factory, which let you encapsulate a constructor invocation. Like this:

 transform(a.begin(),a.end(),back_inserter(objs), 
  boost::bind(boost::value_factory<Object>,
     boost::bind(&Stuff::some_member,_1)
  )
);
link|improve this answer
feedback

Éric's link says, in part "It is not possible to take the address of a constructor, hence constructors cannot be used as target functions in bind expressions." So what I was trying to do was impossible.

I got around it by creating a function:

Object Object_factory(int n)
{  return Object(n); }

and using Object_factory where I was trying to use the Object constructor.

link|improve this answer
feedback

It depends on what a::some_member is returning -- if it is an Object then you shouldn't need to wrap the result in an Object ctor -- it will have already been constructed. If the routine is not returning an Object then you're likely going to have to massage the result a bit, which you could pull of with boost::bind but a utility function may keep the code more readable.

In either case, more code would help, specifically the type instance of a and Object.

link|improve this answer
I changed the code a bit. Lets say I have a Object(int) constructor and Stuff::some_member is an int. Basically my question is, can anything of the form boost::bind(Object,...) ever work, or are constructors just not allowed as an argument to bind? – Dan Hook Aug 26 '09 at 17:51
feedback

Your Answer

 
or
required, but never shown

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