what is runtime entity & load time entity? static storageclass is loadtime entity why?
runtime entity & load time entity?
Collapse
X
-
Those are not terms I have really heard before but from your limited description I would guess that a runtime entity is an object which is created during runtime, objects that are commonly either on the stack or heap while a loadtime entity is created during the program load, objects that are in the data segment for one reason or another.
Comment