On 03 Apr 2009, at 16:21, Bart wrote:

So if i understand correctly:

Say I have

Type
TFoo = class;
private
  fSomeField: Integer;
public
  constructor Create;
end;

then

constructor  TFoo.Create
begin
Inherited Create;
fSomeField := -1;
end;

would in essence be equal to

constructor  TFoo.Create
begin
fSomeField := -1;
end;

Since TOblect.Create "does nothing".

Yes.


Jonas
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to