Difference between revisions of "ShortInt"

From Lazarus wiki
Jump to navigationJump to search
(Use pascal highlighter)
m (Alextpp moved page Shortint to ShortInt: proper casing of name)
 
(No difference)

Latest revision as of 13:27, 22 December 2023

English (en)

A shortint is a signed integer in the range of -128 to 127. The shortint is 8 bits long.

The Byte type is 8 bits long, too. But the byte datatype is an unsigned type, meaning that it encodes numbers from 0 to 255.


var
  a_shortint: shortint;
  a_byte : byte;
  s1, s2 : string;
begin
  a_shortint := %11110001;   // binary number
  a_byte     := %11110001;
  s1 := IntToStr(a_shortint); // s1 = '-15'
  s2 := IntToStr(a_byte);     // s2 = '241'

See also


navigation bar: data types
simple data types

boolean byte cardinal char currency double dword extended int8 int16 int32 int64 integer longint real shortint single smallint pointer qword word

complex data types

array class object record set string shortstring