Link to home
Start Free TrialLog in
Avatar of dbroos
dbroos

asked on

HeapAlloc or LocalAlloc?

Hello experts!!

I'm very confused: when should i use HeapAlloc and when LocalAlloc?
ASKER CERTIFIED SOLUTION
Avatar of jkr
jkr
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of dbroos
dbroos

ASKER

Thanks, can you explain me what is the heap?
Avatar of dbroos

ASKER

Thanks, can you explain me what is the heap?
if you have to ask what the heap is, then you probably don't want either!

A heap is used for performing dynamic memory allocation.  it allows you to allocate a block of memory at run time,w whose size is defined at run-time and whose life time is not specified by the scope of the code that allocates the memory.  This sort of memory is very different than memory allocated to store non-static local varaibles, whose lifetime is limited to the lifetime of the procedure or scope that defines them. And from global and static varaibles whose lifetime is the entire duration of the program.

However there is rarely a need to use either LocalAlloc or HeapAlloc for dynamic memory allocation.  These are windows specific functions and are only needed on rare occasions when working with the windows OS.   Virtually all of you memory allocation needs can be handled by the C++ new operatior.   Unless you need to do something very windows specific, you should be using new to perform these sorts of allocations.
Thank you for junping in with the explanation nietod (I was just on my way back home from the office, and I don't like to be online when waling the streets :o).
Really?  My modem is surgincally implanted...
>>Really?  My modem is surgincally implanted...

Duh, how backwards are we here...