+ 2
What is the difference between mutable and immutable data types?
with examples plz...
2 odpowiedzi
+ 9
The content of objects of immutable types cannot be changed after they are created, while mutable types can. Read more about immutable objects:
https://en.m.wikipedia.org/wiki/Immutable_object
+ 1
thanks