Statisk & Dynamisk allokeret hukommelse

Tags:    c++

Hej med jer,

Hvad er forskellen på statisk og dynamisk allokeret hukommelse, og hvorledes anvendes dynamisk allokeret hukommelse i forbindelse med pointere?

Er statisk og dynamisk andre orde for stakken og heapen??






Hej Henning,

Dynamic memory allocation is at runtime. static memory allocation is before run time, but the values of variables may be changed at run time.

Static memory allocation saves running time, but can't be possible in all cases.

Dynamic memory allocation stores it's memory on heap, and the static memory allocation stores it's data in the "data segment" of the memory.

http://www.csi.uottawa.ca/~holte/T26/dyn-mem-alloc.html

Med venlig hilsen
Ieet



Super!! 1000 takker!
Og fedt med linket. :D



t