Nächste Seite:
Sichtbarkeit von Namen
Aufwärts:
Bezeichner, Bindungen, Bereiche
Vorherige Seite:
Konstanten
Lebensort und -Dauer von Variablen
statisch (global, aber auch lokal:)
int f (int x) { static int y = 3; y++; return x+y; }
dynamisch
Stack
{ int x = ... }
Heap
explizit (new/delete, malloc/free)
implizit
Johannes Waldmann 2013-01-28