Garbage collection

  • Thread starter Thread starter Nanda
  • Start date Start date
N

Nanda

hi all,

In a .NET application, Garbage Collector is invoked, if
managed heap runs out of memory. What happens if heap
runs out of memory in an unmanaged application. (when new
returns null in vc++).
 
I don't think new in C++ ever returns a null pointer. It will raise an
exception if there's insufficient memory (out_of_memory or something like
that). And it wouldn't crash the machine, just terminate the application if
the exception wasn't handled.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top