Does Python have a pool of all strings and are they (strings) singletons there?
More precise, in the following code one or two strings were created in memory:
a = str(num)
b = str(num)
?
|
Does Python have a pool of all strings and are they (strings) singletons there? More precise, in the following code one or two strings were created in memory:
?
| ||||
|
feedback
|
|
Strings are immutable in Python, so the implementation can decide whether to intern (that's a term often associated with C#, meaning that some strings are stored in a pool) strings or not. In your example, you're dynamically creating strings. CPython does not always look into the pool to detect whether the string is already there - it also doesn't make sense because you first have to reserve memory in order to create the string, and then compare it to the pool content (inefficient for long strings). But for strings of length 1, CPython does look into the pool (cf. "stringobject.c"):
So:
But when using constant strings directly in your code, CPython uses the same string instance:
| |||||||||||
feedback
|
|
In general, strings are not interned in Python, but they do sometimes seem to be:
This isn't uncommon in Python, where common objects might be optimized in ways that unusual ones are not:
And keep in mind, all of these sorts of details will differ between implementations of Python, and even between versions of the same implementation. | |||
|
feedback
|
|
Strings are not interned in general. In your example two strings will be created (with the exception of values between 0 and 9). To test this we can use the
| |||||||||
feedback
|
strclass; therefore it's not a singleton. – zneak Mar 25 '10 at 21:36