If I create a vector of vectors of double:
std::vector< std::vector<dou ble> > table1;
Are my vectors of doubles uninitialized? Do I have to loop through table1
and initialize each vector of doubles using new?
And in cleaning up, manually delete each of these vectors of doubles?
Thanks,
B
std::vector< std::vector<dou ble> > table1;
Are my vectors of doubles uninitialized? Do I have to loop through table1
and initialize each vector of doubles using new?
And in cleaning up, manually delete each of these vectors of doubles?
Thanks,
B
Comment