Are Delphi strings immutable? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T23:06:11Z http://stackoverflow.com/feeds/question/755980 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/755980/are-delphi-strings-immutable 1 Are Delphi strings immutable? Jorge Córdoba 2009-04-16T12:49:59Z 2009-04-16T22:37:16Z <p>As far as I know, strings are immutable in Delphi. I kind of understand that means if you do:</p> <pre><code>string1 := 'Hello'; string1 := string1 + " World"; </code></pre> <p>first string is destroyed and you get a reference to a new string "Hello World".</p> <p>But what happens if you have the same string in different places around your code?</p> <p>I have a string hash assigned for identifying several variables, so for example a "change" is identified by a hash value of the properties of that change. That way it's easy for me to check to "changes" for equality.</p> <p>Now, each hash is computed separately (not all the properties are taken into account so that to separate instances can be equal even if they differ on some values).</p> <p>The question is, how does Delphi handles those strings? If I compute to separate hashes to the same 10 byte length string, what do I get? Two memory blocks of 10 bytes or two references to the same memory block?</p> <p><strong>Clarification:</strong> A change is composed by some properties read from the database and is generated by an individual thread. The TChange class has a GetHash method that computes a hash based on some of the values (but not all) resulting on a string. Now, other threads receive the Change and have to compare it to previously processed changes so that they don't process the same (logical) change. Hence the hash and, as they have separate instances, two different strings are computed. I'm trying to determine if it'd be a real improvement to change from string to something like a 128 bit hash or it'll be just wasting my time.</p> <p>Edit: Version of Delphi is Delphi 7.0</p> http://stackoverflow.com/questions/755980/are-delphi-strings-immutable/755984#755984 0 Answer by Lucero for Are Delphi strings immutable? Lucero 2009-04-16T12:52:05Z 2009-04-16T12:52:05Z <p>The Delphi version may be important to know. The good old Delphi BCL handles strings as copy-on-write, which basically means that a new instance is created when something in the string is changed. So yes, they are more or less immutable.</p> http://stackoverflow.com/questions/755980/are-delphi-strings-immutable/756100#756100 14 Answer by Barry Kelly for Are Delphi strings immutable? Barry Kelly 2009-04-16T13:25:02Z 2009-04-16T13:25:02Z <p>Delphi strings are copy on write. If you modify a string (without using pointer tricks or similar techniques to fool the compiler), no other references to the same string will be affected.</p> <p>Delphi strings are not interned. If you create the same string from two separate sections of code, they will not share the same backing store - the same data will be stored twice.</p> http://stackoverflow.com/questions/755980/are-delphi-strings-immutable/756958#756958 1 Answer by Herbert Sitz for Are Delphi strings immutable? Herbert Sitz 2009-04-16T16:34:08Z 2009-04-16T16:34:08Z <p>As others have said, Delphi strings are <em>not</em> generally immutable. Here are a few references on strings in Delphi. </p> <p><a href="http://blog.marcocantu.com/blog/delphi_super_duper_strings.html" rel="nofollow">http://blog.marcocantu.com/blog/delphi_super_duper_strings.html</a></p> <p><a href="http://conferences.codegear.com/he/article/32120" rel="nofollow">http://conferences.codegear.com/he/article/32120</a></p> <p><a href="http://www.codexterity.com/delphistrings.htm" rel="nofollow">http://www.codexterity.com/delphistrings.htm</a></p>