Wiki

Clone wiki

inf225 / glossary / Store

[Alphabetical Index | Tag Index]

Store

An abstraction of the computer's memory, where data (e.g. objects) is addressed by locations, and can be updated. Used in defining the semantics of imperative programming, where variables typically refer to storage locations rather than being directly bound to values. See also environment. In a running system, the store is typically realised as a memory heap and program stack.

Updated