Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What happens if I allocate some memory during execution but never call delete and the program terminates? Will the OS free all memory I allocated and no memory will be 'wasted'? Or will I lose a portion of memory until the computer is restarted?

Obviously I know good coding practice is to make sure you delete what you don't need, so I'm not just asking "what is the point of delete"; I'm simply interested to know what happens inside my RAM.

share|improve this question
To free your memory so the operating system can use it again. When your program terminates, all that memory will be automatically freed, however, it is worth free'ing so the memory usage over the life of your process to keep it having a low(er) memory footprint. – RageD Feb 20 at 18:32
Thanks that's exactly what I thought happened. – Edward Bird Feb 20 at 18:32
2  
one of questions, that you should... FORGET IT. Just... new and delete. always. always! ALWAYS! – loldop Feb 20 at 18:35
Yeah please read the question again. I already said I know. – Edward Bird Feb 20 at 18:36
I just put it here: what if... – loldop Feb 20 at 18:37
show 4 more comments

4 Answers

up vote 3 down vote accepted

It all depends on what your program does, and how much memory it uses - at any given time and overall throughout its runtime.

Say for example you write a mailserver, that allocates memory to hold each email it receives. But it doesn't actually need to store every email that goes through it. So after a few days of receiving and forwarding emails, the mailserver can't allocate any more memory, it has consumed every available byte of memory - but it's not actually doing anything useful with that memory, since the emails are no longer in use - they have been dealt with.

On the other hand, if we write our mailserver program that allocates, say, 1MB of buffer to read in an email, process it, and when it's done with, the memory is reused for another email, then there's little point in freeing that memory, ever.

And if we write a program that just reads a file, loadign the entire file into memory, and when it has counted all the letters for statistical purposes, prints the stats and exits, whether that allocates a lot of memory or not doesn't really matter.

Of course, all this assumes that the call to new is SIMPLY to allocate memory. If the constructor of the object does something more complex, like open a file, acquire a lock or something else, then all sorts of bad things could happen pretty soon if the destructor isn't called.

The OS will (for the commonly used OS's such as Linux, MacOS, iOS, other Unix-systems, Windows, DOS, OS/2, etc) free the memory used by your application.

share|improve this answer

Conceptually, you leak memory.

In practice, though, if you have a sane OS, it will most likely clean up after your process. But don't rely on that, really.

share|improve this answer

The operating systems frees all memory allocated to a process when the process terminates. So the memory allocated by your program will be freed and reclaimed by the operating system once the program terminates.

share|improve this answer
2  
That's only the case for OSes with virtual memory managers - the bulk of OSes in use today - but it doesn't hold for some real-time OSes, for example. – Void Feb 20 at 18:37

Memory is not the only thing released when delete is called. The object in question might have a destructor that releases other resources (file/socket handles, reference counts, etc.) In principle the OS could release all of that at program termination, but you could rapidly run into problems if, say, you hit come open connection limit. It is better to think in terms of resources in general, rather than specifically memory, leaking.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.