System.LongWord
Delphi
type LongWord = { built-in type };
C++
typedef unsigned LongWord; // 0..4294967295
Eigenschaften
Typ | Sichtbarkeit | Quelle | Unit | Übergeordnet |
---|---|---|---|---|
type typedef |
public | System.pas sysmac.h |
System | System |
Beschreibung
Plattformabhängiger Integertyp ohne Vorzeichen.
LongWord repräsentiert eine Untermenge der ganzen Zahlen. Die Größe und der Bereich von LongWord sind von der Zielplattform abhängig:
- Auf 32-Bit-Plattformen und 64-Bit-Windows-Plattformen ist LongWord eine 4 Byte große vorzeichenbehaftete Ganzzahl im Bereich
[0 .. 4294967295]
(0
bis232-1
).
-
- Hinweis:
Zu 32-Bit-Plattformen zählen 32-Bit-Windows, 32-Bit-macOS, 32-Bit-iOS und Android.
- Auf 64-Bit-POSIX-Plattformen (iOS und Linux) ist LongWord eine 8 Byte große vorzeichenlose Ganzzahl im Bereich
[0 .. 18446744073709551615]
(0
bis264-1
).