//Using g++ and ubuntu.
#include <vector>
using namespace std;
Define a class:
class foo(){
(...)
foo(int arg1, double arg2);
}
Constructor:
foo::foo(int arg1, double arg2){
(...) //arrays whose length depend upon arg1 and arg2
}
I would like to do something like this:
vector<foo> bar(10); //error: no matching function for call to 'foo::foo()'
bar[0] = new foo(123, 4.56);
(...)
An alternative method (which I like less) is to use push_back:
vector<foo> bar; //works
bar.push_back(new foo(123, 4.56)); //throws similar error.
//Omitting the "new" compiles but throws a "double free or corruption (fasttop)" on runtime.
I want different elements of the vector to be constructed differently, so I don't want to use the "Repetitive sequence constructor". What should be done?