mal ein praktisches Beispiel:
Delphi-Quellcode:
type
LongRec = packed record
case Integer of
0: (Lo, Hi: Word);
1: (Words: array [0..1] of Word);
2: (Bytes: array [0..3] of Byte);
end;
Weiteres siehe Delphihilfe
Abschnitt:
Variante Teile in Record-Typen (auch zu finden über Abschnitte Record-Typen oder Record-Konstanten)