Alias (Definition)

An indirect reference to an object.

By assigning an object to a variable, you are not copying that object but instead making a reference to it. A reference is sometimes called an alias. The same technique is used in Java, and in non-object oriented languages you accomplish something similar with pointers.

See also:Object