ReNamer:Pascal Script:Types

From den4b Wiki
Revision as of 16:11, 16 June 2009 by Den4b (talk | contribs) (Created page with '{{Template:Expand}} {| align="right" | __TOC__ |} == Integer types == {| class="wikitable" ! Type ! Size ! Range |- | Byte | 1 byte | align="center" | 0 .. 255 |- | ShortInt | ...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
{{{iparam}}} This article needs to be expanded!

Integer types

Type Size Range
Byte 1 byte 0 .. 255
ShortInt 1 byte -128 .. 127
Word 2 bytes 0 .. 65535
SmallInt 2 bytes -32768 .. 32767
Cardinal 4 bytes 0 .. 4294967295
Integer 4 bytes -2147483648 .. 2147483647

Floating point types

Type Size Range
Single 32 bits 1.18 x 10-38 .. 3.4 x 1038
Double 2.23 x 10-308 .. 1.79 x 10308
Extended 3.37 x 10-4932 .. 1.18 x 104932

String types

Type Description
Char Stores a single Ansi character
String Holds a sequence of Ansi characters of any length
WideString Holds a sequence of Unicode characters of any length

Other types

Type Description
Boolean
Array
Record
Enumerations
Variant