What’s an immutable object?

Immutable objects cannot be changed after creation, and can be created either by defining an immutable class or by explicitly declaring a mutable object as immutable. Various programming languages allow for creating immutable objects, and using a keyword to designate an object as immutable is easier but requires caution. Immutable objects should always be treated […]

Skip to content