Registriert seit: 20. Jan 2006
Ort: Lübbecke
11.442 Beiträge
Delphi 12 Athens
|
AW: 2 Variablen selber länge unterschiedlichen Typs auf selber Speicheradresse
16. Sep 2021, 11:27
Delphi-Quellcode:
type
TBDataRead = packed record
w1: WORD;
w2: WORD;
i1: SMALLINT;
i2: SMALLINT;
end;
TArrayOfWordRead = array [0 .. 3] of WORD;
TUnion = record
case Integer of
0: (BData: TBDataRead);
1: (WArray: TArrayOfWordRead);
end;
TBDBThreadBusInterface = class
private
LUnion: TUnion;
end;
Zugriff über LUnion.BData
bzw. LUnion.WArray
.
|