Wiki

Clone wiki

inf225 / glossary / Aliasing

[Alphabetical Index | Tag Index]

Aliasing

When the same memory location or object can be accessed through different names in a program. Can make programs very difficult to understand and analyse. Typically a problem in imperative programming and object-oriented programming, where data is placed in an updatable store rather than everything being immutable values.

[Wikipedia]

Updated