When I don't declare a constructor for example, the compiler will provide me with a default constructor that will have no arguments and no definition (body), and thus, will take no action.
If I now don't declare a destructor, the compiler will provide me with a default destructor with no defintion (body), and thus, I think no action.
So, if I'm finished with an object for example, wouldn't the default destructor reallocate (free) memory used by the object? If it doesn't, why are we getting it?
And, maybe the same question applies to the default constructor. If it doesn nothing, why is it created for us by default?
Thanks.