Registriert seit: 29. Mai 2002
37.621 Beiträge
Delphi 2006 Professional
|
17. Okt 2002, 14:14
Byte ist doch auch nur ein Ganzzahl Typ.
Code:
Typ Bereich Format
Integer -2147483648..2147483647 32 Bit mit Vorzeichen
Cardinal 0..4294967295 32 Bit ohne Vorzeichen
Zu den fundamentalen Integer-Typen gehören Shortint, Smallint, Longint, Int64, Byte, Word und Longword.
Typ Bereich Format
Shortint -128..127 8 Bit, mit Vorzeichen
Smallint -32768..32767 16 Bit, mit Vorzeichen
Longint -2147483648..2147483647 32 Bit, mit Vorzeichen
Int64 -263..263 -1 64 Bit, mit Vorzeichen
Byte 0..255 8 Bit, ohne Vorzeichen
Word 0..65535 16 Bit, ohne Vorzeichen
Longword 0..4294967295 32 Bit, ohne Vorzeichen
Michael Ein Teil meines Codes würde euch verunsichern.
|
|
Zitat
|