What is the meaning of Immutable?

Asked 7 years ago
Viewed 527 times

1

What is the meaning of Immutable?


1 Answer


0

"Immutable"
Simply Immutable means "can't be modified". In terms of programming, immutable object is those objects whose state cannot be modified after it is created. In another way "mutable" object are those objects which can be modified after it is created.
One of the most important feature of immutable objects is to improve the readability and runtime efficiency of object-oriented programming languages.
answered 6 years ago by Arti Mishra

Your Answer