Difference between revisions of "Word"

From Free Pascal wiki
Jump to navigationJump to search
(correct maximum value)
Line 1: Line 1:
 +
 
{{Word}}
 
{{Word}}
  
A Word is a 16 bits unsigned integer value. Its maximal value is 65,535 ((2^16 - 1) or 0xFFFF) and its minimal value is 0.
+
A Word is a 16 bits unsigned [[Integer|integer]] value. It requires two bytes of memory space. Its maximal value is 65,535 ((2^16 - 1) or [[Hexadecimal|hexadecimal]] [[Dollar_sign|$]]FFFF (or 0xFFFF) and its minimal value is 0.
 +
 
 +
Nowadays Words are rarely used in arithmetic operations (because most of the CPU have some [[32 bit]] registers, if not [[64 bit]]), but they can be encountered in some API to encode some flags with logical operations (like in a [[Set|set]]).
 +
And some [[Embedded|embedded]] systems.
 +
 
 +
 
 +
A simple program using a word [[Type|type]] [[Variable|variables]]:
 +
 
 +
<syntaxhighlight>
 +
 
 +
program wordexam;
 +
 
 +
var
 +
  w1,w2: word;
 +
 
 +
begin
 +
  w1 := 1;
 +
  w2 := $2ef;
 +
  writeln ( w1,'+', w2,' = ' , w1+w2);
 +
end.
  
Nowadays Words are rarely used in arithmetic operations (because most of the CPU have some 32 bit registers, if not 64), but they can be encountered in some API to encode some flags with logical operations (like in a set).
+
</syntaxhighlight>
  
 
{{Data types}}
 
{{Data types}}

Revision as of 15:43, 25 January 2019

Deutsch (de) English (en) suomi (fi) français (fr) русский (ru)

A Word is a 16 bits unsigned integer value. It requires two bytes of memory space. Its maximal value is 65,535 ((2^16 - 1) or hexadecimal $FFFF (or 0xFFFF) and its minimal value is 0.

Nowadays Words are rarely used in arithmetic operations (because most of the CPU have some 32 bit registers, if not 64 bit), but they can be encountered in some API to encode some flags with logical operations (like in a set). And some embedded systems.


A simple program using a word type variables:

program wordexam;

var
  w1,w2: word;

begin
  w1 := 1;
  w2 := $2ef;
  writeln ( w1,'+', w2,' = ' , w1+w2);
end.


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