a newbie question.
i am not sure why strings and tuples were made to be immutable; what are the advantages and disadvantage of making them immutable?
please be gentle as it is a newbie question ;-)
thanks & wish you a good day!!
|
|
|||||||
|
|
|
http://effbot.org/pyfaq/why-are-python-strings-immutable.htm |
||
|
|
|
|
pros: performance cons: you can't change them. |
||
|
|
|
|
One big advantage of making them immutable is that they can be used as keys in a dictionary. I'm sure the internal data structures used by dictionaries would get quite messed up if the keys were allowed to change. |
||
|
|
|
Imagine a language called FakeMutablePython, where you can alter strings using list assignment and such (such as
That creates an entry in memory in memory address 0x1, containing "abc", and the identifier Now, say you do..
This creates the identifier Now, if the string were mutable, and you change
This alters the first byte of the string stored at 0x1 to
..would both output This could make for some really weird, unexpected behaviour. Dictionary keys would be a good example of this:
Now in FakeMutablePython, things become rather odd - you initially have two keys in the dictionary, "abc" and "zbc".. Then you alter the "abc" string (via the identifier One solution to this weirdness would be, whenever you assign a string to an identifier (or use it as a dict key), it copies the string at 0x1 to 0x2. This prevents the above, but what if you have a string that requires 200MB of memory?
Suddenly your script takes up 400MB of memory? This isn't very good. What about if we point it to the same memory address, until we modify it? Copy on write. The problem is, this can be quite complicated to do.. This is where immutability comes in.. Instead of requiring the
And is proven by:
(the |
||
|
|