I am allocating memory to a object dynamically and then if i call delete what happens? the destructor is called or delete function has a different way of handling memory??
consider the following example.
class A
{
int x;
}
int main()
{
A *ptr = new A();
delete ptr;
return 0;
}
where is the destructor called
Thanks in advance
Aand see the call!! – Prasoon Saurav Feb 23 '12 at 8:58deletebut you could just set a breakpoint in the destructor and step through. – juergen d Feb 23 '12 at 8:59NULL. If you delete already delete (unallocated) memory it is undefined behaviour, but if you delete a NULL pointer nothing happens. Also you should look into using RAII for all your resource (not just memory) needs. – Dennis Feb 23 '12 at 9:21