Zitat von
MisterNiceGuy:
Da bekomm ich beim dritten Typ einen "Identifier redeclared"... Ist das in Delphi7 schon möglich?
So ist es richtig
Delphi-Quellcode:
type
TFoo1 = class;
TFoo2 = class
Foo1 := TFoo1;
end;
TFoo1 = class
Foo2 : TFoo2;
end;
So ist es falsch, bzw. gibt einen Fehler
Delphi-Quellcode:
type
TFoo1 = class;
type
TFoo2 = class
Foo1 := TFoo1;
end;
type
TFoo1 = class
Foo2 : TFoo2;
end;
So hat s.h.a.r.k das ja auch geschrieben, aber nicht explizit drauf hingewiesen
Kaum macht man's richtig - schon funktioniert's
Zertifikat: Sir Rufo (Fingerprint: ea 0a 4c 14 0d b6 3a a4 c1 c5 b9
dc 90 9d f0 e9 de 13 da 60)