I've been running tests using gprof on a simple version of a vector which allocates memory on the heap (without actually being dynamic - tests purposes only). The thing is that looking at the result I see there's a huge difference between the 'new[]' and the 'delete[]' - given that I actually insert values to the vector (using the [] operator). Doing the above, I got results like:
% cumulative self self total
time seconds seconds calls s/call s/call name
0.92 0.55 0.01 1 5.03 5.03 MyVector::~MyVector()
0.00 0.55 0.00 1 0.00 0.00 MyVector::MyVector(int)
But If I just allocate memory and delete it, without actually inserting values to the vector, they work just as fast:
% cumulative self self total
time seconds seconds calls ms/call ms/call name
0.00 0.09 0.00 1 0.00 0.00 MyVector::MyVector(int)
0.00 0.09 0.00 1 0.00 0.00 MyVector::~MyVector()
My guess is that when using 'new[]' the compiler (gcc in my case) doesn't really allocate the memory, and only when it needs to it does that (like when using []). And when it needs to destroy the object, it has to de-allocate all the memory which was allocated during each access (using []).
I couldn't find any documentation for this - and maybe there's something I'm not aware of. I'd be happy if someone will share his knowledge regarding this issue.
Edit: I added the code I used. Thanks for all the answers so far:
class MyVector
{
public:
MyVector(int size) { _data = new int[size]; };
~MyVector() { delete[] _data; } ;
int& operator[](int index) { return _data[i]; };
private:
int* _data;
int _size;
};
And the test:
int main() {
MyVector v(1000000);
for (int j = 0 ; j<20000 ; ++j) {
for (int i = 0; i<1000000; ++i) {
v[i]= i; //If i remove this line, destructor and constructor work just as fast
}
}
return 0;
}

[]doesn't insert or allocate anyting.... – Pubby Jan 17 at 11:30calls 1means you're only calling those functions once during your test, I'd question the value of those figures. Call them a few thousand times at least. – Mat Jan 17 at 11:31