Difference between revisions of "Enum type"

From Free Pascal wiki
Jump to navigationJump to search
(more precise definition, insert more links, insert →‎Comparative remarks)
m (Alextpp moved page Enum Type to Enum type: proper casing)
 
(13 intermediate revisions by 3 users not shown)
Line 23: Line 23:
 
=== Indices ===
 
=== Indices ===
 
Every member of an enumerated type has an ordinal value which can be obtained using the [[Ord|standard function <syntaxhighlight lang="pascal" inline>ord</syntaxhighlight>]].
 
Every member of an enumerated type has an ordinal value which can be obtained using the [[Ord|standard function <syntaxhighlight lang="pascal" inline>ord</syntaxhighlight>]].
The first member of any enumeration has the ordinal value zero, and every following member are enumerated with consecutive numbers.
+
The first member of any enumeration has the ordinal value zero, and every following member is enumerated with consecutive numbers.
  
 +
==== Override ====
 
In some cases, however, it would be quite useful if the ordinal values were different.
 
In some cases, however, it would be quite useful if the ordinal values were different.
[[FPC]] allows [[Delphi]]-style explicit definition of indices by following member identifiers with an [[=|equal sign]] and an [[Integer|integer]] value:
+
The [[FPC]] allows [[Delphi]]-style explicit definition of indices by following member identifiers with an [[=|equal sign]] and an [[Integer|integer]] value:
 
<syntaxhighlight lang="pascal" highlight="2">
 
<syntaxhighlight lang="pascal" highlight="2">
 
type
 
type
 
sign = (negative = -1, none = 0, positive = 1);
 
sign = (negative = -1, none = 0, positive = 1);
 
</syntaxhighlight>
 
</syntaxhighlight>
All values must be ''ascending'' order.
+
It is not necessary to define ''all'' members with an explicit ordinal value, this example ''just happens'' to define all of them.
Note, it is not necessary to define ''all'' members with an explicit ordinal value, this example ''just happens'' to define all of them.
+
If the ordinal value is unspecified, the automatic enumeration mechanism applies again.
You may skip giving individual members an explicit index, however, the automatic continuous numbering must not clash with the indices provided.
 
  
Instead of a single <syntaxhighlight lang="pascal" inline>=</syntaxhighlight> FPC also allows [[Becomes|<syntaxhighlight lang="pascal" inline>:=</syntaxhighlight>]].
+
==== Properties ====
 +
* An enumeration data type definition is ''ascending'' if the difference in ordinal value to every right-hand member is&nbsp;≥&nbsp;1. Currently, non-ascending definitions merely {{gitlab|repository|FPC|release_3_2_2/compiler/ptype.pas#L1700-1706|emit a note}}. A <syntaxhighlight lang="pascal" inline>set</syntaxhighlight> literal using two enumeration values having the ''same'' ordinal value, albeit represented by ''different'' symbols, will not be accepted.
 +
* An enumeration data type is ''contiguous'' if the ordinal value of every (named) member has an absolute difference of ''one'' to its neighbors. Using a <syntaxhighlight lang="pascal" inline>set</syntaxhighlight> constructor on a non-contiguous enumeration data type may produce unexpected results.
 +
* An enumeration data type is ''normal'' if it is ascending and contiguous and the first member has an ordinal value of (strictly speaking) ''zero'', or, in the broad sense (as implemented by the FPC),&nbsp;≤&nbsp;0. The compiler intrinsic <syntaxhighlight lang="delphi" inline>typeInfo</syntaxhighlight> is ''only'' available for ''those'' enumeration data types.
  
 
=== Prefixing ===
 
=== Prefixing ===
FPC supports automatic prefixing of member identifiers with data type’s name by using the <syntaxhighlight lang="pascal" inline>{$scopedEnums on}</syntaxhighlight> [[local compiler directives|local compiler directive]].
+
FPC prefixes all members of enumeration type definitions in the <syntaxhighlight lang="pascal" inline>type</syntaxhighlight> section with their corresponding type name.
By default this is ''off''.
+
By default, the short name ''without'' a prefix is inserted into the symbol table as an ''alias'' in order to meet Pascal standards.
 +
 
 +
[[FPC New Features 2.6.0#Scoped enumerations|Since version 2.6.0 FPC]] supports disabling member identifiers from being aliased by using the <syntaxhighlight lang="pascal" inline>{$scopedEnums on}</syntaxhighlight> [[local compiler directives|local compiler directive]], thus requiring users to always specify the type name as a prefix:
 
<syntaxhighlight lang="pascal" highlight="3,4,8">
 
<syntaxhighlight lang="pascal" highlight="3,4,8">
 
program scopedEnumerationDemo(input, output, stdErr);
 
program scopedEnumerationDemo(input, output, stdErr);
Line 51: Line 56:
 
end.
 
end.
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
This setting only affects definition of ''new'' enumeration data types.
 
If the compiler switch <syntaxhighlight lang="pascal" inline>{$scopedEnums …}</syntaxhighlight> was ''on'' during definition of a enumeration type, you have to precede any values of that enumeration type with the data type’s name and a dot (in the example above this means <syntaxhighlight lang="pascal" inline>logLevel.</syntaxhighlight>).
 
If the compiler switch <syntaxhighlight lang="pascal" inline>{$scopedEnums …}</syntaxhighlight> was ''on'' during definition of a enumeration type, you have to precede any values of that enumeration type with the data type’s name and a dot (in the example above this means <syntaxhighlight lang="pascal" inline>logLevel.</syntaxhighlight>).
 +
 +
This is useful if names are likely to clash with other identifiers, for example {{Doc|package=RTL|unit=sysutils|identifier=tuseboolstrs|text=<syntaxhighlight lang="pascal" inline>sysUtils.tUseBoolStrs</syntaxhighlight>}} is defined in that way (with <syntaxhighlight lang="pascal" inline>{$scopedEnums on}</syntaxhighlight>), or if isolate identifiers would be meaningless or confusing like in {{Doc|package=RTL|unit=objpas|identifier=tendian|text=<syntaxhighlight lang="pascal" inline>objPas.tEndian</syntaxhighlight>}}.
 +
Usage introduces some incompatibility to other compilers though.
  
 
== Size ==
 
== Size ==
Line 61: Line 70:
 
<syntaxhighlight lang="pascal" inline>{$minEnumSize n}</syntaxhighlight> is (for Delphi compatibility) an alias for <syntaxhighlight lang="pascal" inline>{$packEnum n}</syntaxhighlight>/<syntaxhighlight lang="pascal" inline>{$Z}</syntaxhighlight>.
 
<syntaxhighlight lang="pascal" inline>{$minEnumSize n}</syntaxhighlight> is (for Delphi compatibility) an alias for <syntaxhighlight lang="pascal" inline>{$packEnum n}</syntaxhighlight>/<syntaxhighlight lang="pascal" inline>{$Z}</syntaxhighlight>.
  
* <syntaxhighlight lang="pascal" inline>{$minEnumSize 1}</syntaxhighlight>, <syntaxhighlight lang="pascal" inline>{$packEnum 1}</syntaxhighlight>, <syntaxhighlight lang="pascal" inline>{$Z1}</syntaxhighlight> or <syntaxhighlight lang="pascal" inline>{$Z off}</syntaxhighlight>instruct the compiler to use just at least one Byte for the enumeration type in question.
+
* <syntaxhighlight lang="pascal" inline>{$minEnumSize 1}</syntaxhighlight>, <syntaxhighlight lang="pascal" inline>{$packEnum 1}</syntaxhighlight>, <syntaxhighlight lang="pascal" inline>{$Z1}</syntaxhighlight> or <syntaxhighlight lang="pascal" inline>{$Z‑}</syntaxhighlight> instructs the compiler to use just one Byte (at least) for the enumeration type in question.
 
* <syntaxhighlight lang="pascal" inline>{$minEnumSize 2}</syntaxhighlight>, <syntaxhighlight lang="pascal" inline>{$packEnum 2}</syntaxhighlight> and <syntaxhighlight lang="pascal" inline>{$Z2}</syntaxhighlight>: 2 Bytes minimum.
 
* <syntaxhighlight lang="pascal" inline>{$minEnumSize 2}</syntaxhighlight>, <syntaxhighlight lang="pascal" inline>{$packEnum 2}</syntaxhighlight> and <syntaxhighlight lang="pascal" inline>{$Z2}</syntaxhighlight>: 2 Bytes minimum.
* <syntaxhighlight lang="pascal" inline>{$minEnumSize 4}</syntaxhighlight>, <syntaxhighlight lang="pascal" inline>{$packEnum 4}</syntaxhighlight>, <syntaxhighlight lang="pascal" inline>{$Z4}</syntaxhighlight> or <syntaxhighlight lang="pascal" inline>{$Z on}</syntaxhighlight>: use at least 4 Bytes.
+
* <syntaxhighlight lang="pascal" inline>{$minEnumSize 4}</syntaxhighlight>, <syntaxhighlight lang="pascal" inline>{$packEnum 4}</syntaxhighlight>, <syntaxhighlight lang="pascal" inline>{$Z4}</syntaxhighlight> or <syntaxhighlight lang="pascal" inline>{$Z+}</syntaxhighlight>: use at least 4 Bytes.
  
Furthermore, <syntaxhighlight lang="pascal" inline>{$minEnumSize normal}</syntaxhighlight>, <syntaxhighlight lang="pascal" inline>{$minEnumSize default}</syntaxhighlight> and <syntaxhighlight lang="pascal" inline>{$minEnumSize 0}</syntaxhighlight> restore the default value.
+
Furthermore, <syntaxhighlight lang="pascal" inline>{$minEnumSize normal}</syntaxhighlight>, <syntaxhighlight lang="pascal" inline>{$minEnumSize default}</syntaxhighlight> and <syntaxhighlight lang="pascal" inline>{$minEnumSize 0}</syntaxhighlight> restores the default value.
 
In [[Mode TP|<syntaxhighlight lang="pascal" inline>{$mode TP}</syntaxhighlight>]] the default value is <syntaxhighlight lang="pascal" inline>1</syntaxhighlight> whereas in all other modes it is <syntaxhighlight lang="pascal" inline>4</syntaxhighlight>.
 
In [[Mode TP|<syntaxhighlight lang="pascal" inline>{$mode TP}</syntaxhighlight>]] the default value is <syntaxhighlight lang="pascal" inline>1</syntaxhighlight> whereas in all other modes it is <syntaxhighlight lang="pascal" inline>4</syntaxhighlight>.
Such a “large” minimum size aides quick read/write access.
+
Such a “large” minimum size aids quick read/write access.
  
 
It stands to reason that an enumeration data type has to occupy at least as much space as all discrete values require to be stored.
 
It stands to reason that an enumeration data type has to occupy at least as much space as all discrete values require to be stored.
If less or equal to 2<sup>8</sup> (256) elements have to be storable, the compiler may store a variable of this kind as a single Byte.
+
When there are 2<sup>8</sup> (256) or fewer elements to be stored, the compiler may store a variable of this kind as a single Byte.
A range of 2<sup>16</sup> elements will be stored in two Bytes if not in one Byte suffices.
+
A range of 2<sup>16</sup> elements will be stored in two Bytes if a single Byte is insufficient.
More than 2<sup>16</sup> members are stored in four Bytes.
+
More than 2<sup>16</sup> members will be stored in four Bytes.
 
These rules may, of course, be superseded by the previously mentioned <syntaxhighlight lang="pascal" inline>{$minEnumSize}</syntaxhighlight> setting.
 
These rules may, of course, be superseded by the previously mentioned <syntaxhighlight lang="pascal" inline>{$minEnumSize}</syntaxhighlight> setting.
  
 
== Application ==
 
== Application ==
=== Out-of-box functionality ===
+
=== Out-of-the-box functionality ===
The standard functions <syntaxhighlight lang="pascal" inline>pred</syntaxhighlight> and <syntaxhighlight lang="pascal" inline>succ</syntaxhighlight> will return the predecessor and successor of a value.
+
* The pre-defined data type [[Boolean|<syntaxhighlight lang="pascal" inline>Boolean</syntaxhighlight>]] is an enumeration data type.
Note that range checks may trigger [[runtime error|run-time errors]].
+
* The functions <syntaxhighlight lang="pascal" inline>low</syntaxhighlight> and <syntaxhighlight lang="pascal" inline>high</syntaxhighlight> will give the lowest or highest available ''named'' item of an enumeration data type.
 
+
* The standard functions <syntaxhighlight lang="pascal" inline>pred</syntaxhighlight> and <syntaxhighlight lang="pascal" inline>succ</syntaxhighlight> return the predecessor and successor of a value. In non-Delphi modes this functionality is disabled if the enumeration data type is non-contiguous. Note that range checks may trigger [[runtime error|run-time errors]].
The pre-defined data type [[Boolean|<syntaxhighlight lang="pascal" inline>Boolean</syntaxhighlight>]] is an enumeration data type.
 
 
 
The functions <syntaxhighlight lang="pascal" inline>low</syntaxhighlight> and <syntaxhighlight lang="pascal" inline>high</syntaxhighlight> will give the lowest or highest available ''named'' item of an enumeration data type.
 
  
 
=== Masks ===
 
=== Masks ===
Line 96: Line 102:
  
 
== See also ==
 
== See also ==
* [[Enumerated types]] in the Object Pascal Tutorial series
+
* [[Basic Pascal Tutorial/Chapter 5/Enumerated types|Enumerated types]] in the [[Basic Pascal Tutorial]] series

Latest revision as of 13:26, 22 December 2023

English (en)

An enumeration is a custom data type in Pascal. It is a discrete value that can be referred to by a unique identifier.

Definition

Basic

An enumeration is defined by surrounding a non-empty comma-separated list of identifiers that were not yet defined in the current scope with parentheses:

1program enumerationDemo(input, output, stdErr);
2type
3	fruit = (apple, banana, citrus);

Thus, a variable of the type fruit may assume the values apple, banana, or citrus.

4var
5	snack: fruit;
6begin
7	snack := apple;
8end.

Indices

Every member of an enumerated type has an ordinal value which can be obtained using the standard function ord. The first member of any enumeration has the ordinal value zero, and every following member is enumerated with consecutive numbers.

Override

In some cases, however, it would be quite useful if the ordinal values were different. The FPC allows Delphi-style explicit definition of indices by following member identifiers with an equal sign and an integer value:

type
	sign = (negative = -1, none = 0, positive = 1);

It is not necessary to define all members with an explicit ordinal value, this example just happens to define all of them. If the ordinal value is unspecified, the automatic enumeration mechanism applies again.

Properties

  • An enumeration data type definition is ascending if the difference in ordinal value to every right-hand member is ≥ 1. Currently, non-ascending definitions merely emit a note. A set literal using two enumeration values having the same ordinal value, albeit represented by different symbols, will not be accepted.
  • An enumeration data type is contiguous if the ordinal value of every (named) member has an absolute difference of one to its neighbors. Using a set constructor on a non-contiguous enumeration data type may produce unexpected results.
  • An enumeration data type is normal if it is ascending and contiguous and the first member has an ordinal value of (strictly speaking) zero, or, in the broad sense (as implemented by the FPC), ≤ 0. The compiler intrinsic typeInfo is only available for those enumeration data types.

Prefixing

FPC prefixes all members of enumeration type definitions in the type section with their corresponding type name. By default, the short name without a prefix is inserted into the symbol table as an alias in order to meet Pascal standards.

Since version 2.6.0 FPC supports disabling member identifiers from being aliased by using the {$scopedEnums on} local compiler directive, thus requiring users to always specify the type name as a prefix:

program scopedEnumerationDemo(input, output, stdErr);
type
	{$scopedEnums on}
	logLevel = (error, warning, info, debug);
var
	verbosity: logLevel;
begin
	verbosity := logLevel.debug;
end.

This setting only affects definition of new enumeration data types. If the compiler switch {$scopedEnums …} was on during definition of a enumeration type, you have to precede any values of that enumeration type with the data type’s name and a dot (in the example above this means logLevel.).

This is useful if names are likely to clash with other identifiers, for example sysUtils.tUseBoolStrs is defined in that way (with {$scopedEnums on}), or if isolate identifiers would be meaningless or confusing like in objPas.tEndian. Usage introduces some incompatibility to other compilers though.

Size

The size an enumeration type occupies depends on

  1. the minimum enumeration size compiler configuration, and
  2. the range, that is ord(high(enumeration)) - ord(low(enumeration)).

The local compiler directive {$minEnumSize n} determines the minimum size in Bytes of an enumeration data type. {$minEnumSize n} is (for Delphi compatibility) an alias for {$packEnum n}/{$Z}.

  • {$minEnumSize 1}, {$packEnum 1}, {$Z1} or {$Z‑} instructs the compiler to use just one Byte (at least) for the enumeration type in question.
  • {$minEnumSize 2}, {$packEnum 2} and {$Z2}: 2 Bytes minimum.
  • {$minEnumSize 4}, {$packEnum 4}, {$Z4} or {$Z+}: use at least 4 Bytes.

Furthermore, {$minEnumSize normal}, {$minEnumSize default} and {$minEnumSize 0} restores the default value. In {$mode TP} the default value is 1 whereas in all other modes it is 4. Such a “large” minimum size aids quick read/write access.

It stands to reason that an enumeration data type has to occupy at least as much space as all discrete values require to be stored. When there are 28 (256) or fewer elements to be stored, the compiler may store a variable of this kind as a single Byte. A range of 216 elements will be stored in two Bytes if a single Byte is insufficient. More than 216 members will be stored in four Bytes. These rules may, of course, be superseded by the previously mentioned {$minEnumSize} setting.

Application

Out-of-the-box functionality

  • The pre-defined data type Boolean is an enumeration data type.
  • The functions low and high will give the lowest or highest available named item of an enumeration data type.
  • The standard functions pred and succ return the predecessor and successor of a value. In non-Delphi modes this functionality is disabled if the enumeration data type is non-contiguous. Note that range checks may trigger run-time errors.

Masks

Enumeration data types are particularly useful for implementing “masks”: By defining a set of  you have a neat data type fulfilling certain nice properties.

Comparative remarks

In some programming languages enumeration type definitions become “synonyms” to certain integer values. In Pascal, however, this is not the case. You may not mix a symbol referring to a member of an enumeration with other integer values. You will have to utilize ord or an explicit typecast to the enumeration data type.

See also