Registriert seit: 5. Jan 2005
Ort: Stadthagen
9.454 Beiträge
Delphi 10 Seattle Enterprise
|
AW: Problem mit Uses-Klausel
16. Jan 2013, 14:14
Also so ganz ist das ja nicht
Delphi-Quellcode:
unit AutoTeile;
interface
type
TLenkrad = class
property Durchmesser : integer;
end;
Delphi-Quellcode:
unit Auto;
interface
uses
AutoTeile;
type
TAuto = class
property Lenkrad : TLenkrad;
end;
Delphi-Quellcode:
unit MyMainUnit;
interface
uses
Auto; // kennt nur Auto
var
MeinAuto : TAuto;
// und doch geht der Zugriff auf
MeinAuto.Lenkrad.Durchmesser
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)
|