Why is Self assignable in Delphi? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T10:15:41Zhttp://stackoverflow.com/feeds/question/814567http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/814567/why-is-self-assignable-in-delphi10Why is Self assignable in Delphi?mjustin2009-05-02T10:00:02Z2009-12-04T21:20:38Z
<p>This code in a GUI application compiles and runs:</p>
<pre><code>procedure TForm1.Button1Click(Sender: TObject);
begin
Self := TForm1.Create(Owner);
end;
</code></pre>
<p>(tested with Delphi 6 and 2009)</p>
<ul>
<li>why is Self writeable and not read-only?</li>
<li>in which situations could this be useful?</li>
</ul>
<p>Edit:</p>
<ul>
<li>is this also possible in Delphi Prism? (I think yes it is, see <a href="https://forums.codegear.com/thread.jspa?threadID=20291" rel="nofollow">here</a>)</li>
</ul>
<p>Update:
Delphi applications/libraries which make use of Self assignment:</p>
<ul>
<li><a href="http://code.google.com/p/python4delphi/" rel="nofollow">python4delphi</a></li>
</ul>
http://stackoverflow.com/questions/814567/why-is-self-assignable-in-delphi/814713#8147135Answer by Marco van de Voort for Why is Self assignable in Delphi?Marco van de Voort2009-05-02T11:40:21Z2009-05-02T11:40:21Z<p>Maybe to allow passing to const or var parameters? </p>
<p>It could be an artefact, since system doesn't have self anywhere on the left of := sign.</p>
http://stackoverflow.com/questions/814567/why-is-self-assignable-in-delphi/814745#8147451Answer by Sake for Why is Self assignable in Delphi?Sake2009-05-02T12:04:21Z2009-05-03T23:27:50Z<p>In reality, "Self" is just a name reference to a place on the stack that store address pointing to object in the heap. Forcing read-only on this variable is possible, apparently the designer decided not to. I believe the decision is arbitrary.</p>
<p>Can't see any case where this is useful, that'd merely change a value in stack. Also, changing this value can be dangerous as there is no guarantee that the behavior of the code that reference instance's member will be consistence across compiler versions.</p>
http://stackoverflow.com/questions/814567/why-is-self-assignable-in-delphi/814774#8147747Answer by Mason Wheeler for Why is Self assignable in Delphi?Mason Wheeler2009-05-02T12:24:01Z2009-05-02T12:24:01Z<p>That's not as bad as it could be. I just tested it in Delphi 2009, and it would seem that, while the Self parameter doesn't use <strong>const</strong> semantics, which you seem to be implying it should, it also doesn't use <strong>var</strong> semantics, so you can change it all you want within your method without actually losing the reference the caller holds to your object. That would be a very bad thing.</p>
<p>As for the reason why, one of two answers. Either a simple oversight, or what Marco suggested: to allow you to pass Self to a <strong>var</strong> parameter.</p>