Difference between revisions of "Basic Pascal Tutorial/Chapter 5/Enumerated types"

From Free Pascal wiki
Jump to navigationJump to search
Line 1: Line 1:
 
{{Enumerated types}}
 
{{Enumerated types}}
 +
{{TYNavigator|Solution_4|Subranges}}
  
 
5A - Enumerated Types (author: Tao Yue, state: unchanged)
 
5A - Enumerated Types (author: Tao Yue, state: unchanged)
Line 37: Line 38:
 
One purpose of an enumerated type is to allow you, the programmer, to refer to meaningful names for data. In addition, enumerated types allow functions and procedures to be assured of a valid parameter, since only variables of the enumerated type can be passed in and the variable can only have one of the several enumerated values.
 
One purpose of an enumerated type is to allow you, the programmer, to refer to meaningful names for data. In addition, enumerated types allow functions and procedures to be assured of a valid parameter, since only variables of the enumerated type can be passed in and the variable can only have one of the several enumerated values.
  
{|style=color-backgroud="white" cellspacing="20"
+
{{TYNavigator|Solution_4|Subranges}}
|[[Solution_4|previous]] 
 
|[[Contents|contents]]
 
|[[Subranges|next]]
 
|}
 

Revision as of 19:04, 2 February 2016

български (bg) English (en) français (fr) 日本語 (ja) 中文(中国大陆)‎ (zh_CN)

 ◄   ▲   ► 

5A - Enumerated Types (author: Tao Yue, state: unchanged)

You can declare your own ordinal data types. You do this in the type section of your program:

type
 datatypeidentifier = typespecification;

One way to do it is by creating an enumerated type. An enumerated type specification has the syntax:

(identifier1, identifier2, ... identifiern)

For example, if you wanted to declare the months of the year, you would do a type:

type
  MonthType = (January, February, March, April,
              May, June, July, August, September,
              October, November, December);

You can then declare a variable:

var
  Month : MonthType;

You can assign any enumerated value to the variable:

Month := January;

All the ordinal functions are valid on the enumerated type. ord(January) = 0, and ord(December) = 11.

A few restrictions apply, though: enumerated types are internal to a program -- they can neither be read from nor written to a text file. You must read data in and convert it to an enumerated type. Also, the identifier used in the type (such as January) cannot be used in another type.

One purpose of an enumerated type is to allow you, the programmer, to refer to meaningful names for data. In addition, enumerated types allow functions and procedures to be assured of a valid parameter, since only variables of the enumerated type can be passed in and the variable can only have one of the several enumerated values.

 ◄   ▲   ►