show/hide this revision's text 3 added 73 characters in body; edited tags; added 60 characters in body; added 22 characters in body; edited tags

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)
show/hide this revision's text 2 deleted 22 characters in body

This code in a GUI application compiles and runs(into a endless loop):

procedure TForm1.FormCreate(SenderTForm1.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?
show/hide this revision's text 1

Why is Self assignable in Delphi?

This code in a GUI application compiles and runs (into a endless loop):

procedure TForm1.FormCreate(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?