Log in / create account | Login with OpenID
DocForge
Programmer's Wiki

Immutable object

From DocForge

An immutable object is an object or variable value which can not be changed during program execution. References to the immutable object may be removed or changed to point to other variables, but the actual value of the object is never changed once set.

An example of an immutable object is a string in Python.