How to declare a vector of objects with no default constructor?

Jun 1, 2010 at 10:07am
I'm having a problem with vectors. I need to create a vector of objects that don't have a default constructor. Any ideas are appreciated ;)

Thx in advance.
Jun 1, 2010 at 10:55am
Can you explain more?
Jun 1, 2010 at 10:56am
You can't. std::vector requires that the type has a default constructor. If it's absolutely necessary, you can declare the vector as a vector of pointers to dynamically allocated objects.
Jun 1, 2010 at 4:07pm
helios u saved me, working with pointers was very hard but at last it worked, thank u very much :)
Topic archived. No new replies allowed.