In Delphi, you would do this:-

[pascal]

TMyObj = class(TObject)
public
constructor create;
end;

...

constructor TMyObj.create;
begin
inherited;

// My code here
end;
[/pascal]

You don't need override on the create.