vote up 10 vote down star
2

This code in a GUI application compiles and runs:

procedure TForm1.Button1Click(Sender: TObject);
begin
  Self := TForm1.Create(Owner);
end;

(tested with Delphi 6 and 2009)

  • why is Self writeable and not read-only?
  • in which situations could this be useful?

Edit:

  • is this also possible in Delphi Prism? (I think yes it is, see here)
flag

3 Answers

vote up 6 vote down check

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 const semantics, which you seem to be implying it should, it also doesn't use var 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.

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 var parameter.

link|flag
vote up 5 vote down

Maybe to allow passing to const or var parameters?

It could be an artefact, since system doesn't have self anywhere on the left of := sign.

link|flag
For passing self as const no special allowance is needed, for that Self can be const too. Passing it as a Var parameter is just another form of assigning, the question remains. – Henk Holterman May 2 at 17:13
vote up 1 vote down

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.

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.

link|flag
Changing a value in the stack could be dangerous - what will happen to the old object instance? Memory Leaking I guess. – mjustin May 2 at 12:25
1  
@mjustin: No problem with changing the stack value, it is just a reference (pointer) to the object, the calling code / the owner would still have the reference to finally free the object. – mghie May 2 at 12:43
Self is implemented as an ordinary object reference, to ordinary even as this question shows. – Henk Holterman May 2 at 17:18
It's not a "by convention" name. It's built into the language. You can't choose to go against the convention use a different name in your own programs. – Rob Kennedy May 3 at 15:20
You were right, I mis-use the term. fixed. – Sake May 3 at 23:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.